/* =========================================
   VARIABLES & THEMING
   ========================================= */
:root {
    /* Color Palette */
    --color-primary: #C5A059;
    /* Gold */
    --color-primary-dark: #A68345;
    --color-secondary: #FF8BA0;
    /* Soft Pink / Rose from logo */
    --color-accent: #8E3E63;
    /* Deep Purple / Magenta */

    --color-bg-light: #FFFCF5;
    /* Warm Cream White */
    --color-bg-white: #FFFFFF;
    --color-text-dark: #2A2A2A;
    --color-text-light: #555555;
    --color-text-white: #FFFFFF;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Radii & Shadows */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* =========================================
   RESET & BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

/* =========================================
   TYPOGRAPHY
   ========================================= */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.section-title p {
    font-size: 1.1rem;
}

.separator {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    margin: 1rem auto;
    border-radius: 3px;
}

.separator-left {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    margin: 1rem 0 2rem 0;
    border-radius: 3px;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-text-white);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
    color: var(--color-text-white);
}

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

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-text-white);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #1EBE5C;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    background: rgba(255, 252, 245, 0.85);
    /* Glassmorphism background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-sm);
    background: rgba(255, 252, 245, 0.95);
}

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

.logo-img {
    height: 50px;
    /* Adjust based on actual logo */
    object-fit: contain;
    transition: var(--transition-fast);
}

.navbar.scrolled .logo-img {
    height: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-normal);
}

.nav-links a:not(.btn):hover::after,
.nav-links a.active:not(.btn)::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-primary);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    min-height: 100vh;
    padding-top: 80px;
    /* Account for navbar */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    /* Soft gradient background blob */
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255, 139, 160, 0.15) 0%, rgba(255, 252, 245, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, rgba(255, 252, 245, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-content {
    flex: 1;
    padding: 0 4rem 0 10%;
    max-width: 800px;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-dark);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    height: 80vh;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.1);
}

/* =========================================
   FEATURES BANNER
   ========================================= */
.features {
    padding: 4rem 0;
    background: var(--color-bg-white);
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    border: 1px solid rgba(197, 160, 89, 0.1);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(197, 160, 89, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: var(--font-body);
}

.feature-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.feature-item p span {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-accent);
    font-weight: 500;
}

/* =========================================
   COLLECTION / GALLERY
   ========================================= */
.collection {
    padding: 6rem 0;
    background: var(--color-bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-height: 1350px;
    /* Approximately 3 rows depending on screen size */
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1rem;
    /* Prevents box-shadow from being clipped */
    margin: -1rem;
    /* Offsets the padding */
}

/* Elegant Scrollbar for the gallery */
.gallery-grid::-webkit-scrollbar {
    width: 6px;
}

.gallery-grid::-webkit-scrollbar-track {
    background: rgba(197, 160, 89, 0.05);
    border-radius: 10px;
}

.gallery-grid::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 10px;
}

.gallery-grid::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-dark);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.gallery-overlay h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transform: translateY(10px);
    transition: var(--transition-normal);
}

.gallery-overlay .btn {
    transform: translateY(10px);
    transition: var(--transition-normal);
    transition-delay: 0.1s;
}

.gallery-item:hover {
    box-shadow: var(--shadow-lg);
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:hover .gallery-overlay h3,
.gallery-item:hover .gallery-overlay .btn {
    transform: translateY(0);
}

/* =========================================
   INFORMATION / ABOUT
   ========================================= */
.about {
    padding: 6rem 0;
    background: var(--color-bg-white);
}

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

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-text h2 {
    font-size: 2.5rem;
}

.policy-list {
    margin-top: 2rem;
}

.policy-list li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.policy-list i {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: #1A1A1A;
    /* Dark theme for footer */
    color: var(--color-bg-light);
    padding: 5rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: #AAAAAA;
    margin-top: 1.5rem;
    max-width: 300px;
}

.footer-logo {
    height: 60px;
    border-radius: var(--radius-sm);
}

.footer-contact h3,
.footer-social h3 {
    color: white;
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-contact ul li {
    margin-bottom: 1rem;
    color: #AAAAAA;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-contact i {
    color: var(--color-primary);
}

.footer-contact a:hover {
    color: var(--color-primary);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-icon.tiktok:hover {
    background: black;
    color: white;
    box-shadow: 2px 2px 0 #00f2fe, -2px -2px 0 #fe0979;
}

.social-icon.whatsapp:hover {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #777;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* =========================================
   ANIMATIONS CLASSES
   ========================================= */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}

.animate-up.left {
    transform: translateX(-30px);
}

.animate-up.right {
    transform: translateX(30px);
}

.visible {
    opacity: 1 !important;
    transform: translate(0) !important;
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}


/* =========================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================= */
@media (max-width: 992px) {
    .hero {
        flex-direction: column-reverse;
        padding-top: 100px;
        text-align: center;
    }

    .hero-content {
        padding: 4rem 2rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-image {
        width: 100%;
        height: 50vh;
    }

    .hero-image img {
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: 2;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--color-bg-white);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition-normal);
        text-align: center;
        padding-bottom: 5rem;
    }

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

    .hamburger {
        display: block;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 1rem auto;
    }

    .footer-contact ul li {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        margin: 0;
        padding: 0.5rem;
    }

    .gallery-overlay {
        padding: 0.8rem;
    }

    .gallery-overlay h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .gallery-overlay p {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .gallery-overlay .btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }
}