/* Global Styles */
:root {
    --primary-color: #C0A062;
    /* Gold/Beige for elegance */
    --secondary-color: #2C3E50;
    /* Dark Blue/Grey */
    --bg-color: #FDFCF8;
    /* Off-white */
    --text-color: #333;
    --white: #fff;
    --font-heading: 'Playfair Display', Montserrat:ital;
    --font-body: 'Lato', Jost;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

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

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
}

.section-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: #777;
    margin-bottom: 3rem;
    font-style: italic;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.btn:hover {
    transform: scale(1.05);
    /* Slight grow effect */
}

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

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(192, 160, 98, 0.4);
}

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

.btn-outline:hover {
    background-color: var(--white);
    color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.btn-gold {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(192, 160, 98, 0.4);
}

.btn-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(192, 160, 98, 0.6);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('assets/image.png') no-repeat center center/cover;
    /* Fallback or specific image */
    color: var(--white);
    position: relative;
    padding: 0 20px;
}

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

.hero-content h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    font-style: italic;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.hero-buttons {
    margin-bottom: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-weight: 600;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-btn:hover {
    background: var(--white);
    color: var(--secondary-color);
    transform: scale(1.05);
    /* Start of push animation */
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.social-btn i {
    font-size: 1.2rem;
}

/* Collection Section */
.collection-section {
    padding: 3rem 0;
    overflow: hidden;
}

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

.slider-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 2rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.slider-container::-webkit-scrollbar {
    height: 8px;
}

.slider-container::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 4px;
}

.card {
    flex: 0 0 220px;
    scroll-snap-align: center;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-info {
    padding: 1.5rem;
    text-align: center;
}

.card-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.collection-footer {
    text-align: center;
    margin-top: 3rem;
}

/* Visit Us Section */
.visit-section {
    padding: 3rem 0;
    background-color: #f4f4f4;
}

.map-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #e0e0e0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.map-fallback {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Footer */
.site-footer {
    background-color: var(--white);
    color: var(--text-color);
    padding: 2rem 0 2rem;
    text-align: center;
    border-top: 1px solid #eee;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    width: 80px;
    /* Adjust size as needed */
    height: auto;
    border-radius: 50%;
    /* Optional: if they want circular logo */
    object-fit: cover;
}

.footer-brand h3 {
    color: var(--secondary-color);
    margin: 0;
    font-size: 1.8rem;
}

/* Links removed from footer */

.footer-bottom {
    border-top: 1px solid #eee;
    padding-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

/* Instagram Section */
.instagram-section {
    padding: 3rem 0;
    text-align: center;
    background-color: var(--white);
    margin-bottom: 0;
}

.instagram-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: center;
}

.instagram-iframe {
    width: 100%;
    /* Default height for desktop */
    height: 600px;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    /* Maintain generic aspect ratio if fixed height isn't enough, 
       but fixed height usually works better for iframes unless strictly 1:1 */
}

/* Responsive adjustments */
/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        /* Allow flexible height on mobile */
        min-height: 100vh;
        padding: 6rem 20px 4rem;
        /* Add padding to prevent overlap with top/bottom */
    }

    .hero-content h1 {
        font-size: 2.5rem;
        /* Smaller heading */
    }

    .tagline {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .slider-container {
        padding-left: 20px;
    }

    .card {
        flex: 0 0 180px;
        /* Even smaller cards for mobile */
    }

    .card img {
        height: 180px;
    }

    .instagram-iframe {
        height: 500px;
    }

    .map-container {
        height: 350px;
        /* Smaller map on mobile */
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .social-links {
        width: 100%;
        /* Ensure full width usage */
    }

    .instagram-iframe {
        height: 450px;
    }

    .card {
        flex: 0 0 160px;
    }

    .card img {
        height: 160px;
    }
}