/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FFAAA8;
    --primary-dark: #FF8B88;
    --primary-light: #FFC9C7;
    --primary-extra-light: rgba(255, 170, 168, 0.2);
    --dark: #1A1A1A;
    --dark-light: #2A2A2A;
    --text: #1A1A1A;
    --text-muted: #666666;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 170, 168, 0.3);
    --border-radius: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ============================================
   CONTAINER
   ============================================ */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 120px 0;
    position: relative;
}

.section.light-bg {
    background: rgba(255, 170, 168, 0.05);
}

/* ============================================
   SECTION TITLES & SUBTITLES
   ============================================ */

.section-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title.left-aligned {
    text-align: left;
}

.section-title.smaller {
    font-size: clamp(30px, 4vw, 40px);
}

.section-large-text {
    font-size: clamp(20px, 3vw, 28px);
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 60px;
    font-weight: 400;
}

.section-subtitle {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    margin-top: 1.25em;
    margin-bottom: 0.75em;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle-2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(22px, 3vw, 28px);
    margin-top: 1.25em;
    margin-bottom: 0.75em;
    color: rgba(0, 0, 0, 0.6)
}

.section-subtext {
    font-size: clamp(18px, 2vw, 24px);
    color: var(--text-muted);
    font-weight: 400;
}

.section-subtext-2 {
    font-size: clamp(18px, 2vw, 20px);
    color: var(--text-muted);
    font-weight: 400;
}

.section-list {
    color: var(--text-muted);
    font-size: clamp(18px, 2vw, 20px);
    margin-left: 3em;
}

div.section-columns {
    display: flex;
    justify-content: center;
    gap: 2em;
    margin-top: 3em;
}

div.section-column {
    width: 50%;
    border: 1px solid rgba(255, 168, 170, 0.5);
    border-radius: 24px;
    padding: 2em;
    transition: all 0.4s ease;
}

div.section-column:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.section-column .section-subtitle-2 {
    margin-top: 0em;
}

div.section-image {
    width: 100%;
    display: flex;
    justify-content: center;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    margin-bottom: 1em;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    height: 30vh;
}

img.section-image {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: lowercase;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 170, 168, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 170, 168, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--text);
    border: 2px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 170, 168, 0.1);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-tertiary {
    background: var(--white);
    color: var(--text);
    border: 2px solid var(--glass-border);
}

.btn-tertiary:hover {
    background: rgba(255, 170, 168, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-wide {
    width: 100%;
}

.btn-center {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-delay {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   ANIMATED BACKGROUND
   ============================================ */

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 170, 168, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 170, 168, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(255, 170, 168, 0.08) 0%, transparent 50%);
    animation: bgFloat 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes bgFloat {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* ============================================
   HERO SECTIONS
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 40px 80px;
    text-align: center;
    background-image: url('https://dreamsdemos-image-files.b-cdn.net/dreamsdemos_Studio%20Exterior%202%400.5x.webp');
}

.hero-content {
    max-width: 900px;
    padding: 1em;
    border-radius: 48px;
    background: rgba(0,0,0,0.25);
    box-shadow: 0 0 3em 3em rgba(0,0,0,0.25);
    backdrop-filter: blur(2px);
}

.hero-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.2;
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: lowercase;
}

.hero-text {
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   IMAGE DIVIDERS
   ============================================ */

.image-divider {
    height: 40vh;
    position: relative;

    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    overflow: clip;
}

.image-divider-bottom::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--white) 0%, transparent 20%);
}

.image-divider-norm::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--white) 0%, transparent 20%, transparent 80%, var(--white) 100%);
}

.image-overlay {
    display: none;
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   RESPONSIVE - 768PX & BELOW
   ============================================ */

@media (max-width: 768px) {
    .hero {
        padding: 140px 20px 60px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .container {
        padding: 0 20px;
    }
}