:root {
    --primary-color: #96371f;
    --text-color: #333;
    --bg-color: #fff;
    --accent-color: #b04e32; /* Lighter version of primary for hovers */
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-logo {
    width: 90vw;
    max-width: 600px;
    height: auto;
    display: block;
}

/* Face SVG Drawing Animation */
.hero-logo path {
    stroke: white;
    stroke-width: 1.5;
    fill: transparent;
}


.hero-btn {
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background-color: transparent;
    border: 1px solid white;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    opacity: 0; /* For animation */
    transform: translateY(20px);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

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

/* Content Sections */
.section {
    padding: 5rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* About Section - Effortless Beauty */
.about-section {
    background: linear-gradient(135deg, #fdf8f5 0%, #f9ede5 100%);
    max-width: 100%;
    padding: 6rem 1rem;
    margin: 0;
    box-shadow: inset 0 2px 20px rgba(150, 55, 31, 0.08);
    position: relative;
    overflow: hidden;
}

/* Decorative pattern overlay */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle, rgba(150, 55, 31, 0.08) 1px, transparent 1px),
        radial-gradient(circle, rgba(150, 55, 31, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    opacity: 0.4;
    pointer-events: none;
}

/* Top border accent */
.about-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    z-index: 2;
}

/* Bottom border accent - using a new pseudo-element approach */
.about-section .text-content::before {
    content: '';
    position: absolute;
    bottom: -6rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    z-index: 2;
}

.about-section .text-content {
    position: relative;
    z-index: 1;
}

.text-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
}

.highlight-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
    background-color: #f5f5f5;
    max-width: 100%;
    margin: 0;
    padding: 5rem 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-item {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.map-container {
    width: 100%;
    height: 400px;
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

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

/* Footer */
footer {
    background-color: #f9f9f9;
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

/* Instagram Section */
.instagram-section {
    background: linear-gradient(to bottom, #fff 0%, #faf9f8 100%);
    max-width: 100%;
    margin: 0;
    padding: 5rem 0;
}

.instagram-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

/* Gallery Cards */
.gallery-card {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    text-decoration: none;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(150, 55, 31, 0.2);
}

.gallery-card-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* 1:1 aspect ratio */
    overflow: hidden;
    background: #f5f5f5;
}

.gallery-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.gallery-card-image img.loaded {
    opacity: 1;
}

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

/* Overlay */
.gallery-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(150, 55, 31, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
}

.instagram-icon-overlay {
    width: 48px;
    height: 48px;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.gallery-overlay-text {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

