:root {
    --primary: #FADADD;
    /* Baby Pink */
    --secondary: #8B5E3C;
    /* Soft Brown */
    --accent: #E6B4B8;
    /* Muted Pink Accent */
    --text-dark: #4A2E2A;
    /* Dark Brown for readability */
    --text-light: #FADADD;
    --bg-light: #FFF8F5;
    /* Cream background */
    --bg-tint: #FDF1F2;
    /* Softest pink tint for contrast */
    --glass: rgba(255, 255, 255, 0.7);
    --shadow: 0 10px 30px rgba(74, 46, 42, 0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23df9c9d' d='M8 0L9.5 6.5L16 8L9.5 9.5L8 16L6.5 9.5L0 8L6.5 6.5L8 0Z'/%3E%3C/svg%3E"), auto;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-light);
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
#main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(74, 46, 42, 0.05);
    padding: 0.5rem 0;
    transition: var(--transition);
}

#main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#main-nav .logo img {
    height: 60px;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--primary);
}

.cta-btn-nav {
    background: var(--primary);
    color: #fff !important;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
}

.cta-btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(223, 156, 157, 0.4);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
#hero {
    height: 100vh;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    position: relative;
    width: 100%;
}

.hero-content {
    max-width: 800px;
}

#hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 700;
}

#hero .accent {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

#hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--secondary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: var(--text-dark);
    box-shadow: 0 10px 20px rgba(139, 94, 60, 0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-3px);
}

.overflow-protected {
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}

/* Sections General */
section {
    padding: 100px 0;
    overflow-x: hidden;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
}

/* Our Story */
#story {
    background: var(--bg-light);
    color: var(--text-dark);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-image {
    position: relative;
    box-shadow: 0 0 50px rgba(255, 0, 127, 0.3);
    border-radius: 20px;
}

.story-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 5px solid white;
}

.story-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: 20px;
    z-index: -1;
}

.story-text .lead {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--secondary);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.story-text p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.story-highlights {
    margin-top: 2.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.highlight-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Mission & Vision */
#mission {
    background: var(--bg-light);
    border-top: 1px solid rgba(139, 94, 60, 0.05);
    color: var(--text-dark);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mv-card {
    padding: 4rem 3rem;
    background: white;
    color: var(--text-dark);
    border-radius: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(139, 94, 60, 0.1);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 0, 127, 0.4);
}

.mv-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    color: var(--secondary);
    /* Soft Brown for titles */
}

.mv-card p {
    color: var(--text-dark);
    z-index: 2;
    position: relative;
}

.pre-title {
    color: var(--secondary);
    /* Soft Brown for better contrast */
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.social-proof {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 1rem;
    margin-bottom: 4rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: #888;
}

.stat-item i {
    color: var(--primary);
}

.icon-wrap {
    width: 80px;
    height: 80px;
    background: rgba(255, 0, 127, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--primary);
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.4);
}

/* Lifestyle Gallery */
#lifestyle {
    background: var(--bg-light);
    color: var(--text-dark);
}

#lifestyle .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

#shop {
    background: var(--bg-tint);
    color: var(--text-dark);
}

#shop p {
    color: var(--text-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 20px;
    height: 400px;
    border: 2px solid rgba(255, 0, 127, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Contact Section */
#contact {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 120px 0;
}

.contact-box {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(139, 94, 60, 0.2);
    box-shadow: var(--shadow);
}

.contact-box h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-info {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
}

.info-item i {
    color: var(--primary);
}

.contact-form {
    width: 100%;
    max-width: 600px;
    display: grid;
    gap: 1rem;
}

.contact-form input {
    background: white;
    border: 1px solid rgba(139, 94, 60, 0.2);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    color: var(--text-dark);
    font-family: inherit;
    font-size: 1rem;
}

.contact-form input:focus {
    outline: none;
    border-color: var(--primary);
}

/* Footer */
footer {
    padding: 60px 0 30px;
    background: var(--bg-light);
    border-top: 1px solid rgba(139, 94, 60, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 2rem;
}

.footer-bottom {
    width: 100%;
    padding-top: 3rem;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.footer-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: #888;
    font-size: 1.3rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary);
}

/* Animations Trigger Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 480px) {

    .reveal-left,
    .reveal-right {
        transform: translateX(0) translateY(20px);
    }
}

/* Specific Hero Animations */
.fade-up {
    animation: fadeUp 1s ease-out forwards;
}

.fade-up-delay {
    opacity: 0;
    animation: fadeUp 1s ease-out 0.3s forwards;
}

.fade-up-delay-2 {
    opacity: 0;
    animation: fadeUp 1s ease-out 0.6s forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 968px) {

    .story-grid,
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: -110%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        padding: 4rem 2rem;
        transition: var(--transition);
        text-align: center;
        z-index: 999;
        backdrop-filter: blur(10px);
    }

    .nav-links.active {
        left: 0;
    }

    .menu-toggle {
        display: block;
        transition: var(--transition);
    }

    .menu-toggle.active {
        color: var(--primary);
        transform: rotate(90deg);
    }

    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    #hero h1 {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 2rem !important;
    }

    .footer-about .social-links {
        justify-content: center;
    }

    .footer-bottom {
        justify-content: center !important;
        text-align: center;
    }

    .container {
        padding: 0 1.2rem;
    }

    section {
        padding: 60px 0;
    }
}

/* Extra small screens 300px */
@media (max-width: 350px) {
    #hero h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    #main-nav .logo img {
        height: 40px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        padding: 1rem;
        font-size: 0.8rem;
    }

    .story-text .lead {
        font-size: 1.1rem;
    }
}