/* --- General Styling & Variables --- */
:root {
    --primary-color: #E58A25; /* A vibrant orange for call-to-actions */
    --dark-bg: #121212;       /* Deep dark background */
    --card-bg: #1E1E1E;       /* Slightly lighter bg for cards */
    --text-light: #F5F5F5;    /* Light text for contrast */
    --text-medium: #A0A0A0;  /* Medium gray for subtitles */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

/* --- Reusable Components --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--dark-bg);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-light);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto 40px auto;
}

/* --- Header & Navigation --- */
.header {
    background-color: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #2a2a2a;
    padding: 15px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-light);
    transition: all 0.3s ease-in-out;
}

/* --- Hero Section --- */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: url('assets/headerimage.jpeg') no-repeat center center/cover;
    padding: 0 5%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* UPDATED: Styling for the clickable Google rating link */
.google-rating-link {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s ease;
}

.google-rating-link:hover {
    transform: scale(1.05);
}

.google-rating {
    margin-top: 30px;
    font-size: 1rem;
    color: var(--text-medium);
}
.google-rating .fa-star {
    color: #FFC107;
}

/* --- Why Choose Us Section --- */
.why-us-section {
    padding: 80px 5%;
    background-color: var(--dark-bg);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-item {
    text-align: center;
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-family: var(--font-body);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--text-medium);
}

/* --- Portfolio & Flash Sections (UPDATED for Expand/Collapse & Blur Effect) --- */
.portfolio-section, .flash-section {
    padding: 80px 5%;
    text-align: center;
}

.portfolio-grid, .flash-grid {
    display: grid;
    gap: 20px;
    margin-top: 50px;
    overflow: hidden;
    transition: max-height 0.8s ease-in-out;
    position: relative; /* Crucial for the blur effect */
}

/* ADDED: The blur/fade-out effect at the bottom */
.portfolio-grid::after, .flash-grid::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px; /* Adjust the height of the fade */
    background: linear-gradient(to bottom, transparent, var(--dark-bg));
    pointer-events: none; /* Allows clicking through the gradient */
    transition: opacity 0.5s ease-in-out;
    opacity: 1; /* Visible by default */
}

/* HIDE THE BLUR when the gallery is expanded */
.portfolio-grid.expanded::after, .flash-grid.expanded::after {
    opacity: 0;
}

.portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    max-height: 650px; 
}

.flash-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    max-height: 550px;
}

.portfolio-item, .flash-item {
    overflow: hidden;
    border-radius: 8px;
}

.portfolio-item img, .flash-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.portfolio-item:hover img, .flash-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.9);
}
.expand-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Adds space between buttons */
    flex-wrap: wrap; /* Allows buttons to stack on small screens */
    margin-top: 50px;
}

/* --- Artist Section (UPDATED to Circle Frame) --- */
.artist-section {
    padding: 80px 5%;
    background-color: var(--card-bg);
}

.artist-container {
    /* We use a simple flex layout for side-by-side content */
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 50px auto 0 auto;
}

.artist-image {
    /* 1. Define the size of the circle */
    width: 300px;
    height: 300px;
    flex-shrink: 0; /* Prevents the circle from shrinking if text is long */
    
    /* 2. This is the key property that creates the circle shape */
    border-radius: 50%; 
    
    /* 3. Hide the parts of the image that are outside the circle */
    overflow: hidden; 

    /* Optional: Add a border to make the circle stand out */
    border: 4px solid var(--primary-color);
}

.artist-image img {
    /* Make the image fill the circular container perfectly without stretching */
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-info {
    /* The text will take up the remaining space */
    flex-grow: 1;
}

.artist-info h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
}

.artist-info h4 {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.artist-info p {
    margin-bottom: 30px;
}

/* --- Hygiene Section --- */
.hygiene-section {
    padding: 80px 5%;
}
.hygiene-points {
    max-width: 800px;
    margin: 50px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.point i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 5px;
}

/* --- FAQ Section --- */
.faq-section {
    padding: 80px 5%;
    background-color: var(--card-bg);
}
.faq-container {
    max-width: 800px;
    margin: 50px auto 0 auto;
}
.faq-container details {
    background: var(--dark-bg);
    border: 1px solid #333;
    border-radius: 5px;
    margin-bottom: 10px;
}
.faq-container summary {
    padding: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    list-style: none; /* Remove default marker */
}
.faq-container summary::-webkit-details-marker {
    display: none; /* Hide for Chrome/Safari */
}
.faq-container summary::after {
    content: '+';
    float: right;
    font-size: 1.5rem;
    transition: transform 0.2s;
}
.faq-container details[open] summary::after {
    transform: rotate(45deg);
}
.faq-container details p {
    padding: 0 20px 20px 20px;
    color: var(--text-medium);
}


/* --- Testimonials Section --- */
.testimonials-section {
    padding: 80px 5%;
    background-color: var(--dark-bg);
}
.testimonial-slider-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.testimonial-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
}
.testimonial-card .stars {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.testimonial-card h4 {
    font-weight: 700;
    color: var(--text-light);
}

/* --- Booking Section --- */
.booking-section {
    padding: 80px 5%;
    text-align: center;
    background-color: var(--card-bg);
}
.booking-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}
.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 35px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-contact.whatsapp {
    background-color: #25D366;
    color: white;
}
.btn-contact.whatsapp:hover {
    background-color: #128C7E;
}
.btn-contact.email {
    background-color: #555;
    color: white;
}
.btn-contact.email:hover {
    background-color: #333;
}
.btn-contact i {
    font-size: 1.5rem;
}

/* NEW: Location Section Styling */
.location-section {
    padding: 80px 5%;
}
.map-container {
    margin-top: 50px;
    border-radius: 8px;
    overflow: hidden; /* Ensures the iframe corners are rounded */
    border: 1px solid #2a2a2a;
}
.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    /* This filter makes the map match the dark theme */
    filter: invert(100%) grayscale(80%);
}

/* --- Footer --- */
.footer {
    padding: 20px 5%;
    text-align: center;
    background-color: var(--dark-bg);
    border-top: 1px solid #2a2a2a;
    color: var(--text-medium);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px; /* Height of header */
        flex-direction: column;
        background-color: var(--dark-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-item {
        margin: 16px 0;
    }
    .hamburger {
        display: block;
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .section-title {
        font-size: 2.2rem;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .booking-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn-contact {
        width: 80%;
        justify-content: center;
    }
    .artist-container {
        flex-direction: column;
        text-align: center;
    }
}

.location-section {
    padding: 80px 5%;
}
.studio-address {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: -10px auto 40px auto; /* Margin top is negative to reduce space from title */
    line-height: 1.7;
}
.studio-address i {
    color: var(--primary-color);
    margin-right: 8px;
}
.map-container {
    margin-top: 50px;
    border-radius: 8px;
    overflow: hidden; /* Ensures the iframe corners are rounded */
    border: 1px solid #2a2a2a;
}
.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    /* This filter makes the map match the dark theme */
    filter: invert(100%) grayscale(80%);
}

.footer {
    padding: 40px 5%; /* Increased padding for more space */
    text-align: center;
    background-color: var(--dark-bg);
    border-top: 1px solid #2a2a2a;
    color: var(--text-medium);
}

.social-media {
    margin-bottom: 20px;
}

.social-media a {
    color: var(--text-medium);
    text-decoration: none;
    display: inline-flex; /* Aligns icon and text horizontally */
    align-items: center;  /* Aligns them vertically in the middle */
    gap: 12px;            /* Adds space between the icon and the text */
    transition: color 0.3s ease;
    font-size: 1.1rem;    /* Sets the font size for the text */
    font-weight: 500;
}

.social-media a i {
    font-size: 2rem; /* Keeps the icon size large */
}

.social-media a:hover {
    color: var(--primary-color); /* Changes both icon and text to orange on hover */
}