:root {
    /* Colors */
    --bg-color: #fcfaf6;
    --text-color: #333333;
    --gold: #d4af37;
    --gold-light: #f3e5ab;
    --gold-dark: #aa8c2c;
    --white: #ffffff;
    --gray-light: #f4f4f4;

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--white);
}

.btn-gold:hover {
    background-color: var(--gold-dark);
}

.btn-outline {
    border-color: var(--text-color);
    color: var(--text-color);
    font-size: 0.9rem;
    padding: 10px 20px;
}

.btn-outline:hover {
    background-color: var(--text-color);
    color: var(--white);
}

/* --- Header --- */
.site-header {
    background-color: var(--bg-color);
    padding: var(--spacing-sm) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.site-header .logo {
    text-align: center;
}

.site-header .header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    height: 80px; 
    object-fit: contain;
}

.header-wa-btn {
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.header-wa-btn:hover {
    transform: scale(1.05);
}

.header-wa-btn i {
    font-size: 1.1rem;
}

/* Footer Details */
.footer-contact-info {
    text-align: center;
    margin-top: var(--spacing-sm);
}

.contact-cta {
    font-size: 0.95rem;
    margin-bottom: var(--spacing-sm);
    color: #bbb;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-details p {
    font-size: 1.1rem;
}

.contact-details a {
    color: var(--white);
    font-weight: 600;
}

.contact-details a:hover {
    color: var(--gold);
}

.whatsapp-text i, .email-text i {
    color: var(--gold);
    margin-right: 8px;
}

/* --- Hero --- */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Darkens image for text readability */
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
    padding: 0 var(--spacing-sm);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    font-weight: 300;
}

/* --- Sections Common --- */
section {
    padding: var(--spacing-lg) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: var(--spacing-xs);
}

.section-header p {
    color: #666;
    font-style: italic;
}

/* --- Instagram Feed --- */
.instagram-feed h2 i {
    color: var(--gold);
    margin-right: 10px;
}

.instagram-link {
    display: inline-block;
    margin-top: var(--spacing-xs);
    color: var(--gold);
    font-weight: 600;
    border-bottom: 1px solid var(--gold);
}

.grid-container {
    display: grid;
    gap: 10px;
    /* Responsive Grid Logic */
    grid-template-columns: repeat(2, 1fr); /* Mobile: 2 cols */
}

@media (min-width: 600px) {
    .grid-container {
        grid-template-columns: repeat(3, 1fr); /* Tablet: 3 cols */
    }
}

@media (min-width: 900px) {
    .grid-container {
        grid-template-columns: repeat(5, 1fr); /* Desktop: 5 cols (5x3=15) */
    }
}

.grid-item {
    position: relative;
    aspect-ratio: 1 / 1; /* Square images */
    overflow: hidden;
    cursor: pointer;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.grid-item:hover img {
    transform: scale(1.1);
}

/* --- Locations --- */
.locations {
    background-color: var(--gray-light);
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

@media (min-width: 768px) {
    .locations-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.location-card {
    background: var(--white);
    border-radius: 8px; /* Slight roundness */
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
}

.shop-photo {
    height: 600px;
    overflow: hidden;
}

.shop-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.location-card:hover .shop-photo img {
    transform: scale(1.05); /* Zoom effect on hover */
}

.map-frame {
    height: 300px;
    background: #eee;
}

.location-info {
    padding: var(--spacing-md);
    text-align: center;
}

.location-info h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--gold-dark);
}

.location-info .address {
    margin-bottom: var(--spacing-sm);
    color: #666;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
}

.location-info i {
    color: var(--gold);
    margin-top: 5px;
}

/* --- Footer --- */
.site-footer {
    background-color: #222; /* Dark footer */
    color: var(--white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.site-footer .brand h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.site-footer .brand p {
    color: #888;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-item i {
    font-size: 1.2rem;
}

.contact-item.whatsapp {
    background-color: #25D366;
    color: white;
}

.contact-item.phone {
    background-color: var(--gold);
    color: white;
}

.contact-item:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.copyright {
    margin-top: var(--spacing-lg);
    border-top: 1px solid #333;
    padding-top: var(--spacing-md);
    width: 100%;
    font-size: 0.8rem;
    color: #666;
}

/* --- Animations --- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

/* Mobile Tweaks */
@media (max-width: 600px) {
    .hero h1 { font-size: 2.5rem; }
    .section-header h2 { font-size: 2rem; }
}
