/* 1. Basic Setup and Global Styles */
body {
    font-family: 'Arial', sans-serif; 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    background-color: #f7f7f7; /* Soft Off-White Background */
    color: #333; 
}

/* 2. Header and Navigation (Clean Look) */
.main-header {
    background-color: #fff; 
    color: #2c3e50; 
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
}

/* Logo Styling - Updated to handle image tag */
.logo img {
    display: block;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; 
}

nav ul li a {
    color: #2c3e50;
    text-decoration: none;
    padding: 0 15px;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #1abc9c; /* Soft Teal/Green highlight */
}

/* 3. CTA Buttons (Stylish) */
.cta-button {
    display: inline-block;
    background-color: #1abc9c; /* Primary Accent Color (Teal) */
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s;
    font-weight: bold;
}

.cta-button:hover {
    background-color: #16a085; 
}

.secondary-cta {
    background-color: #3498db; /* Secondary color (Blue) */
}

.secondary-cta:hover {
    background-color: #2980b9;
}


/* 4. Hero Section */
.hero-section {
    background-color: #ecf0f1; 
    text-align: center;
    padding: 80px 5%;
    margin-bottom: 30px;
}

.hero-section h1 {
    font-size: 2.8em;
    color: #34495e; 
    margin-bottom: 15px;
}

/* 5. Portfolio Showcase (RCS - Responsive Grid) */
.portfolio-showcase {
    padding: 40px 5%;
    text-align: center;
}

.grid-container {
    display: grid;
    /* Responsive grid: items fit as many as possible (min 280px) */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px;
    margin-top: 40px;
}

.grid-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08); 
    transition: transform 0.3s;
}

.grid-item:hover {
    transform: translateY(-7px); 
}

/* Styling for the actual image tags */
.art-image-actual {
    width: 100%;
    height: 220px; /* Set a fixed height for a uniform grid look */
    object-fit: cover; /* Ensures images cover the area without distortion */
    margin-bottom: 15px;
    border-radius: 4px;
    display: block;
}


/* 6. About Section */
.about-snippet {
    background-color: #ecf0f1;
    padding: 50px 10%;
    text-align: center;
    margin-top: 30px;
}

/* 7. Footer */
footer {
    background-color: #34495e; 
    color: white;
    text-align: center;
    padding: 20px 5%;
    font-size: 0.9em;
}

.footer-links a {
    color: #1abc9c;
    text-decoration: none;
    padding: 0 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

/* 8. Media Queries (Responsiveness - Mobile) */
@media (max-width: 768px) {
    .main-header {
        flex-direction: column; 
        text-align: center;
    }

    nav ul {
        margin-top: 10px;
        flex-direction: column; 
    }

    nav ul li a {
        padding: 5px 0;
        display: block; 
    }

    .hero-section h1 {
        font-size: 2em;
    }
}
/* Add this block to your existing style.css */

/* T&C and Privacy Page Specific Styling */
.content-section {
    padding: 50px 10%; /* Provides generous padding for readability */
    max-width: 1000px; /* Limits width on large screens (Clean design principle) */
    margin: 0 auto;
}

.page-title {
    font-size: 2.5em;
    color: #34495e;
    margin-bottom: 5px;
    text-align: center; /* Centering the main heading */
}

.last-updated {
    text-align: center;
    color: #95a5a6;
    margin-bottom: 40px;
    font-size: 0.9em;
}

.t-c-article {
    background-color: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* Subtle shadow */
}

.t-c-article h2 {
    color: #1abc9c; /* Matching the accent color */
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 10px;
    margin-top: 0;
}

.t-c-article ul {
    list-style-type: disc;
    padding-left: 25px;
}

/* Mobile Responsiveness for content section (RCS) */
@media (max-width: 600px) {
    .content-section {
        padding: 30px 5%; /* Reduces padding on smaller screens */
    }
    .page-title {
        font-size: 2em;
    }
}


/* --- Contact Page Specific Styling --- */

.contact-container {
    padding: 40px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

/* 2-Column Layout using Flexbox for Desktop */
.contact-layout {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

/* Left Side: Form Styling */
.contact-form-side {
    flex: 2; /* Takes up 2/3 space on large screens */
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.form-instruction {
    margin-bottom: 30px;
    color: #555;
    font-size: 1.1em;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 15px 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    box-sizing: border-box; /* Crucial for responsiveness */
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #1abc9c; /* Accent color on focus */
    outline: none;
}

.contact-form textarea {
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* Consent Checkbox Styling */
.consent-checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    font-size: 0.9em;
}

.consent-checkbox-group input {
    margin-right: 10px;
    margin-top: 5px; /* Align checkbox better */
    width: 18px;
    height: 18px;
}

.consent-checkbox-group label {
    color: #555;
}

/* Right Side: Details Styling */
.contact-details-side {
    flex: 1; /* Takes up 1/3 space on large screens */
    padding: 30px 0;
}

.tagline {
    font-size: 1.2em;
    color: #34495e;
    font-weight: bold;
    margin-bottom: 30px;
}

.business-info-block {
    margin-bottom: 35px;
}

.business-info-block h3 {
    color: #1abc9c;
    font-size: 1.4em;
    margin-bottom: 10px;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 5px;
}

.hours-detail {
    margin: 5px 0;
    color: #777;
}

/* --- Cookie Banner Styling (RCS Floating Element) --- */
.cookie-banner-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background-color: #333; /* Dark background like the image */
    color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.cookie-banner-popup p {
    font-size: 0.9em;
    margin-bottom: 15px;
}

.accept-cookie-button {
    background-color: white;
    color: black;
    border: none;
    padding: 10px 20px;
    width: 100%;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.accept-cookie-button:hover {
    background-color: #ddd;
}


/* --- Mobile Responsiveness (RCS) --- */
@media (max-width: 900px) {
    .contact-layout {
        flex-direction: column; /* Stack columns vertically on tablets/mobiles */
        gap: 30px;
    }
    
    .contact-form-side,
    .contact-details-side {
        padding: 0; /* Remove padding override on smaller screens */
        box-shadow: none;
    }
    
    /* Center text for small screens */
    .contact-details-side {
        text-align: center;
    }

    .contact-container .page-title {
        font-size: 2em;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .cookie-banner-popup {
        width: 90%; /* Full width on very small screens */
        right: 5%;
        left: 5%;
        bottom: 10px;
    }
}