@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fauna+One&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

/* --- General Reset & Variables --- */
:root {
    --color-primary: #1e1e1e; /* Dark background */
    --color-secondary: #00bcd4; /* Bright Teal/Cyan Accent */
    --color-text: #ffffff;
    --color-highlight: #e7ae3c; /* Vibrant Gold/Orange for CTA/Highlights */
    --color-highlight-light: #00bcd4; /* Slightly lighter gold for hover */
    --color-card-bg: #2a2a2a;
    --color-light-bg: #383838;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

p,a {
    font-family: "Fauna One", serif;
    font-weight: 400;
    font-style: normal;
}

/* * 1. Base Body/Dark Section Background (Vibrant Texture) * */
body {
    background-color: var(--color-primary);
    /* Subtle Pattern: Dark diagonal lines over the primary color for texture */
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(0, 0, 0, 0.1), 
        rgba(0, 0, 0, 0.1) 1px,
        transparent 1px, 
        transparent 5px
    );
    color: var(--color-text);
    line-height: 1.6;
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--color-highlight);
}

.container {
    width: 90%;
    /* UPDATED: Increased max-width to 1600px */
    max-width: 1600px; 
    margin: 0 auto;
}

h1, h2, h3 {
    font-weight: bold;
    margin-bottom: 15px;
}

h2 {
    font-size: 2.2em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 40px;
    text-align: center;
}

/* --- Header/Navigation --- */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(30, 30, 30, 0.95); 
    padding: 15px 0;
    border-bottom: 3px solid var(--color-secondary);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a { 
    height: 64px;
    display: block;
}

.logo a img {
    height: 64px;
}

.nav-links a {
    margin-left: 25px;
    color: var(--color-text);
    text-transform: uppercase;
}

.cta-button {
    background-color: var(--color-highlight); 
    color: var(--color-primary) !important;
    padding: 14px 30px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
    text-transform: uppercase;
    font-size: 1.1em;
}

.cta-button:hover {
    background-color: var(--color-highlight-light); 
    color: var(--color-primary);
}

.explore-button {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    border: none;
}

.explore-button:hover {
    background-color: #008c99;
}


/* --- Responsive & Mobile Menu Styles --- */

/* Hide the toggle button by default (desktop view) */
.menu-toggle, .close-menu {
    display: none;
    background: none;
    border: none;
    color: var(--color-highlight);
    font-size: 1.75rem;
    cursor: pointer;
    padding: 5px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary); /* Dark full screen */
    z-index: 1001; /* Above header */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 30px;
}

.mobile-nav-links a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 10px 0;
    transition: color 0.2s ease;
}

.mobile-nav-links a:hover {
    color: var(--color-secondary);
}

/* Specific styling for the CTA button in the mobile menu */
.mobile-nav-links .cta-link-button {
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 1.25rem;
    width: fit-content;
    align-self: center;
}

/* Media Query for Mobile Devices (e.g., screens smaller than 768px) */
@media (max-width: 768px) {
    
    /* Hide the desktop menu */
    #desktop-nav {
        display: none;
    }

    /* Show the mobile toggle button */
    .menu-toggle {
        display: block;
    }

    /* Adjust logo size if necessary on small screens */
    .logo a, .logo a img {
        height: 54px; 
    }
    
}


/* --- Other Component Styles (Keep Existing Styles) --- */

/* --- Hero Banner --- */
.hero {
    position: relative;
    height: 76vh; 
    display: flex;
    align-items: center;
    padding: 0;
    background: url('images/hero-banner.jpg') no-repeat top center/cover; 
}

.hero-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0%;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.7);
    padding: 40px 40px 48px;
    border-left: 5px solid var(--color-secondary);
}

.hero h1 {
    font-size: 3.5em;
    color: var(--color-text);
    line-height: 1.1;
    display: block;
}

.hero p {
    font-size: 1.4em;
    margin-bottom: 20px;
    color: #ccc;
    display: block;
}

.hero .cta-button {
    background-color: var(--accent-color);
    border: 2px solid var(--color-highlight);
    color: var(--color-secondary);
    display: inline-block;
}

.hero .cta-button:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    border: 2px solid var(--color-highlight-light);
}

@media (max-width: 768px){

    .hero {
        height: 87vh;
    }

    .hero h1 {
        font-size: 2em;
        line-height: 1;
        text-align: center;
    }

    .hero p {
        font-size: 1em;
        text-align: center;
    }

    .hero .cta-button {
        text-align: center;
        font-size: 1em;
    }
}

/* --- Portfolio Showcase & Full Gallery Grid --- */
.portfolio-showcase, .full-gallery {
    padding: 80px 0;
    background-color: var(--color-primary); 
    text-align: center;
}

.grid-primary, .portfolio-grid-expanded {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.portfolio-grid-expanded {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.suit-card {
    overflow: hidden;
    border-radius: 10px;
    border: 3px solid transparent;
    transition: transform 0.3s, border-color 0.3s;
    cursor: pointer;
}

.suit-card:hover {
    transform: scale(1.03);
    border-color: var(--color-highlight); 
}

.suit-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* * 2. Light/Accent Section Background (Vibrant Radial Gradient) * */
.locations, .footer, .hero-page-header, .suit-journey, .value-prop-section, .stats-section, .gallery-hero, .blog-hero {
    background-color: var(--color-light-bg);
    /* Radial Gradient for vibrant depth */
    background-image: radial-gradient(
        circle at 50% 50%,
        rgba(0, 0, 0, 0.1) 0%, 
        rgba(0, 188, 212, 0.1) 30%, 
        rgba(231, 76, 60, 0.1) 70%,  /* Note: This color is hardcoded here and doesn't use the gold highlight variable */
        var(--color-light-bg) 100% 
    );
}

/* --- Locations --- */
.locations {
    padding: 60px 0;
}

.locations-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.map-placeholder {
    flex: 1;
    height: 380px;
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-secondary);
}

.events-info {
    flex: 1;
}

.events-info h3 {
    color: var(--color-highlight); 
    font-size: 1.4em;
}

.events-info p {
    margin-bottom: 10px;
}

/* --- Blog Section (3 Tiles Per Row) --- */
.blog-section {
    padding: 80px 0;
    text-align: center;
}

.blog-grid {
    display: grid;
    /* Forces 3 equal columns on large screens */
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background-color: var(--color-card-bg);
    border-radius: 10px;
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.blog-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.blog-content h3 a {
    color: var(--color-card-bg);
    text-decoration: none;
    font-size: 1em;
    font-weight: 700;
    transition: color 0.3s;
}

.blog-content h3 a:hover {
    color: var(--color-secondary);
}

.blog-date {
    font-size: 1.2em;
    color: #aaa;
    margin-bottom: 15px;
}

.blog-content p {
    font-size: 1.1em;
    color: #ccc;
    margin-bottom: 20px;
}

.blog-card .read-more {
    color: var(--color-highlight); 
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.1em;
}

.blog-card .read-more:hover {
    text-decoration: underline;
}

/* --- Reviews --- */
.reviews {
    padding: 80px 0;
    background-color: var(--color-primary);
    text-align: center;
}

.review-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.review-card {
    width: 350px;
    background-color: var(--color-card-bg);
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    border-left: 5px solid var(--color-highlight); 
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--color-secondary);
}

.review-name {
    font-weight: bold;
    color: var(--color-secondary);
}

.stars {
    color: gold;
    font-size: 1.2em;
}

.reviews-link {
    margin-top: 20px;
    display: inline-block;
    color: var(--color-highlight); 
    font-weight: bold;
}

/* --- Footer --- */
.footer {
    padding: 40px 0;
    border-top: 3px solid var(--color-secondary);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
}

.footer-content h3 {
    color: var(--color-highlight); 
    font-size: 1.4em;
    margin-bottom: 15px;
}

.footer-content a, .footer-content p {
    display: block;
    margin-bottom: 8px;
    font-size: 1.1em;
    color: #ccc;
}

.social-icons a {
    margin-right: 15px;
    font-size: 1.5em;
    color: var(--color-text);
    display: inline-block;
}

.social-icons a:hover {
    color: var(--color-secondary);
}

.copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 1.1em;
    color: #aaa;
}

/* --- Suit Detail/Case Study Page Layout --- */
.hero-page-header {
    padding: 100px 0; 
    text-align: center;
}

.suit-details {
    padding: 50px 0;
    background-color: var(--color-primary); 
}

.detail-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start; 
}

.gallery-column {
    flex: 2; 
}

.specs-column {
    flex: 1; 
    background-color: var(--color-light-bg);
    padding: 30px;
    border-radius: 8px;
    border-left: 3px solid var(--color-secondary);
}

/* Updated for interactive gallery and max height */
.main-suit-image {
    width: 100%;
    height: auto;
    max-height: 688px; /* Set maximum height */
    object-fit: contain; /* Ensures the entire image fits within the container */
    border-radius: 10px;
    margin-bottom: 15px;
    border: 3px solid var(--color-highlight);
    transition: opacity 0.3s ease-in-out; 
}

.image-thumbnails {
    display: flex;
    gap: 10px;
}

.image-thumbnails img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s, border 0.3s;
    border: 2px solid transparent;
}

.image-thumbnails img:hover, .image-thumbnails img.active {
    opacity: 1;
    border-color: var(--color-highlight); /* Highlight active thumbnail with gold */
}

.spec-group {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #444;
}

.spec-group h3 {
    color: var(--color-secondary);
    font-size: 1.1em;
    margin-bottom: 5px;
}

.feature-list {
    list-style-type: '⚡'; /* Custom list style for flair */
    padding-left: 20px;
}

.feature-list li {
    margin-bottom: 5px;
}

.testimonial-box {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--color-card-bg);
    border-left: 5px solid var(--color-highlight);
    border-radius: 4px;
}

.testimonial-box .quote {
    font-style: italic;
    margin-bottom: 10px;
    color: #fff;
}

.testimonial-box .client {
    text-align: right;
    font-size: 1.1em;
    color: var(--color-highlight-light);
}

/* --- CSS for Case Study Narrative Blocks --- */
.case-study-narrative {
    padding: 50px 0;
}

.case-study-block {
    margin-bottom: 40px;
    padding: 30px;
    background-color: var(--color-light-bg); 
    border-radius: 10px;
    border-left: 5px solid var(--color-secondary);
}

.case-study-heading {
    font-size: 1.8em;
    color: var(--color-text);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--color-highlight);
    padding-bottom: 10px;
    text-align: left; 
}

.case-study-content p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #ccc;
    text-align: justify;
}

.case-study-content strong {
    color: var(--color-highlight);
}


/* --- CSS for the Fursuit Journey Timeline Section --- */

.journey-timeline {
    position: relative;
    padding: 0 0 0 20px;
}

/* Vertical Line down the middle for the timeline effect */
.journey-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0; /* Align to the far left of the container on mobile/default */
    width: 4px;
    height: 100%;
    background-color: var(--color-secondary);
    border-radius: 2px;
}

.timeline-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-step .step-details {
    position: relative;
}

/* Timeline Step Dots */
.timeline-step .step-details::after {
    content: '';
    position: absolute;
    right: 1px;
    top: 80px;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    background-color: var(--color-highlight);
    border: 4px solid var(--color-light-bg);
    border-radius: 50%;
    z-index: 10;
}

.step-details {
    flex: 3;
    padding: 20px;
    background-color: var(--color-card-bg);
    border-radius: 8px;
    margin-left: 20px; /* Offset from the vertical line */
}

.step-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.journey-photo {
    max-width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    border: 3px solid var(--color-secondary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.step-number {
    font-size: 3em;
    font-weight: bold;
    color: var(--color-highlight);
    display: block;
    margin-bottom: 10px;
}

.step-details h3 {
    color: var(--color-text);
    border-bottom: 1px solid #444;
    padding-bottom: 5px;
    font-size: 1.5em;
}

.step-details ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
    font-size: 1.1em;
    color: #ccc;
}

.step-details ul li {
    margin-bottom: 10px;
}
.step-details li strong {
    color: var(--color-secondary);
    font-weight: 600;
    list-style: circle;
}

/* --- CSS for Value Proposition Section --- */

.value-prop-section {
    padding: 80px 0;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.value-card {
    background-color: var(--color-card-bg);
    padding: 30px;
    border-radius: 10px;
    border-bottom: 3px solid var(--color-highlight);
    transition: transform 0.3s, background-color 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    background-color: #333333;
}

.value-icon {
    font-size: 3em;
    display: block;
    margin-bottom: 10px;
}

.value-card h3 {
    color: var(--color-secondary);
    font-size: 1.5em;
    margin-bottom: 10px;
}

.value-card p {
    color: #ccc;
    font-size: 1.1em;
}

/* --- CSS for Fursuit Type Selector Section --- */

.type-selector-section {
    padding: 80px 0;
}

.type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.type-card {
    display: block;
    background-color: var(--color-card-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 3px solid transparent;
}

.type-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
    border-color: var(--color-secondary);
}

.type-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border-bottom: 3px solid var(--color-highlight-light);
}

.type-content {
    padding: 20px;
    text-align: center;
}

.type-content h4 {
    color: var(--color-highlight);
    font-size: 1.6em;
    margin-bottom: 10px;
    font-weight: 700;
}

.type-content p {
    color: #ccc;
    font-size: 1.1em;
}

/* --- Media Queries for Responsiveness --- */
@media (min-width: 769px) {
    /* Desktop Timeline Layout */
    .journey-timeline::before {
        left: 50%; /* Center the vertical line on desktop */
        transform: translateX(-50%);
    }

    .timeline-step {
        width: 100%;
    }

    /* Steps on the right side of the line */
    .timeline-step:nth-child(even) {
        flex-direction: row-reverse;
    }

    /* Steps on the left side of the line */
    .timeline-step:nth-child(odd) {
        flex-direction: row;
    }

    /* Positioning the dot correctly for desktop center line */
    .timeline-step .step-details::after {
        right: -16px;
    }

    .timeline-step:nth-child(even) .step-details:after{
        left: -16px;

    }

    /* Adjusting margins for right-side steps (even) */
    .timeline-step:nth-child(even) .step-details {
        margin-left: 0;
        margin-right: 40px;
        text-align: justify;
        border-right: 4px solid var(--color-highlight);
        border-left: none;
    }
    .timeline-step:nth-child(even) .step-number {
        text-align: right;
    }

    .timeline-step:nth-child(even) .step-details h3 {
        text-align: right;
    }

    /* Adjusting margins for left-side steps (odd) */
    .timeline-step:nth-child(odd) .step-details {
        margin-right: 0;
        margin-left: 40px;
        text-align: left;
        border-left: 4px solid var(--color-highlight);
        border-right: none;
    }
}


@media (max-width: 900px) {
    .hero-text {
        left: 5%;
        right: 5%;
        max-width: 90%;
    }

    .locations-content {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Blog switches to 2 columns */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .detail-layout {
        flex-direction: column;
    }

    .specs-column {
        width: 100%;
        padding: 20px;
    }

    .image-thumbnails {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Mobile Timeline Layout */
    .journey-timeline::before {
        left: 20px; /* Keep vertical line slightly indented */
    }
    .timeline-step::after {
        left: 8px;
    }
    .timeline-step {
        flex-direction: column;
        align-items: flex-start;
    }
    .step-details {
        margin-left: 40px;
        margin-right: 0;
        border-left: 4px solid var(--color-highlight);
        text-align: left;
    }
    .step-image {
        padding: 20px 0 10px 40px;
    }
    .step-number {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .nav-content {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        margin: 15px 0;
    }

    .nav-links a {
        margin: 0 10px;
    }

    .cta-button {
        margin-top: 10px;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 1.8em;
    }

    .blog-grid {
        grid-template-columns: 1fr; /* Stack blog cards on small screens */
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .review-card {
        width: 100%;
    }
    
    .value-grid, .type-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================================================================== */
/* 9. Social Share Bar Styling (for suit-details.php)                   */
/* ==================================================================== */

.share-bar {
    width: 100%;
    max-width: 1200px; /* Same width as your main container */
    margin: 40px auto;
    padding: 25px;
    background-color: var(--color-card-bg); /* Dark card background */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.share-prompt {
    font-size: 1.25em;
    color: var(--color-highlight); /* Use your highlight color */
    margin-bottom: 20px;
    font-weight: bold;
}

.share-links {
    display: flex;
    justify-content: center;
    gap: 15px; /* Space between icons */
    flex-wrap: wrap;
}

.share-icon {
    display: flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1em;
    text-decoration: none;
    transition: background-color 0.2s, transform 0.1s;
    color: #ffffff; /* Default text color for share links */
    border: none; /* For the Copy Link button */
    cursor: pointer; /* For the Copy Link button */
}

.share-icon i {
    margin-right: 8px;
    font-size: 1.2em;
}

/* Specific Social Media Colors */
.share-icon.twitter {
    background-color: #1DA1F2;
}
.share-icon.facebook {
    background-color: #1877F2;
}
.share-icon.reddit {
    background-color: #FF4500;
}
.share-icon.email {
    background-color: #D44638; /* Google/Gmail Red */
}
.share-icon.copy-link {
    background-color: #555555;
}

.share-icon:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Specific Social Media Colors */
.share-icon.twitter {
    background-color: #1DA1F2;
}
/* ... existing styles ... */

.share-icon.reddit {
    background-color: #FF4500;
}

/* WhatsApp Green (NEW) */
.share-icon.whatsapp {
    background-color: #25D366;
}

.share-icon.email {
    background-color: #D44638; /* Google/Gmail Red */
}
/* ... rest of the styles ... */

/* Responsive adjustment for small screens */
@media (max-width: 600px) {
    .share-bar {
        padding: 15px;
        margin: 20px auto;
    }

    .share-links {
        gap: 10px;
    }

    .share-icon {
        padding: 8px 12px;
        font-size: 0.9em;
    }
}

/* ------------------------------------------------------------------- */
/* BLOG PAGE STYLES */
/* ------------------------------------------------------------------- */
/* Assuming these variables exist in your main CSS file for consistency */
:root {
    --primary-color: #5d5d81; /* Muted deep purple/blue */
    --secondary-color: #c9c9ff; /* Light lavender/purple */
    --accent-color: #ff9900; /* Bright orange for CTA */
    --bg-light: #f5f5f5;
    --bg-dark: #1e1e3f;
    --text-dark: #333;
    --text-light: #fff;
}

/* BLOG HERO SECTION */
.blog-hero {
    text-align: center;
    padding: 80px 0 40px;
    color: var(--text-light);
    border-bottom: 5px solid var(--secondary-color);
}
.blog-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}
.blog-hero p {
    font-size: 1.25rem;
    color: #ccc;
}

/* BLOG POST GRID */
.blog-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding: 60px 0;
}

/* BLOG CARD STYLING */
.blog-card {
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.blog-thumbnail {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease-in-out;
}
.blog-card:hover .blog-thumbnail {
    transform: scale(1.05);
}

.blog-content {
    padding: 20px 25px;
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
}
.blog-date {
    display: block;
    font-size: 1.1em;
    color: var(--color-highlight-light);
    margin-bottom: 5px;
    font-weight: 700;
}
.blog-content h3 {
    font-size: 1.6rem;
    margin-top: 0;
    margin-bottom: 10px;
}
.blog-content a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.2s;
}
.blog-content h3 a:hover {
    color: var(--accent-color);
}
.blog-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    flex-grow: 1; 
}
.read-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 10px;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.2s, color 0.2s;
}
.read-more:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

/* PAGINATION STYLING */
.pagination {
    text-align: center;
    padding: 40px 0 80px;
}
.pagination a, .pagination span {
    text-decoration: none;
    display: inline-block;
    padding: 10px 18px;
    margin: 0 5px;
    border-radius: 8px;
    transition: background-color 0.3s, color 0.3s;
    font-weight: 500;
}
.pagination a {
    color: var(--primary-color);
    border: 1px solid var(--secondary-color);
}
.pagination a:hover {
    background-color: var(--secondary-color);
    color: var(--bg-dark);
}
.pagination span.current {
    background-color: var(--accent-color);
    color: var(--bg-dark);
    font-weight: bold;
    border: 1px solid var(--accent-color);
}
.pagination span.disabled {
    color: #aaa;
    border: 1px solid #eee;
    cursor: default;
}

@media (max-width: 480px) {
    .blog-archive-grid {
        grid-template-columns: 1fr;
    }
}

/* ------------------------------------------------------------------- */
/* Custom CSS for Gallery Page (Required for standalone styling) */
/* ------------------------------------------------------------------- */

/* GALLERY HERO SECTION */
.gallery-hero {
    text-align: center;
    padding: 80px 0 40px;
    border-bottom: 5px solid var(--secondary-color);
}
.gallery-hero h1 {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 10px;
}
.gallery-hero p {
    font-size: 1.25rem;
}

/* FILTER BAR */
.filter-bar {
    padding: 20px 0;
    text-align: center;
    margin-bottom: 30px;
}
.filter-bar a {
    text-decoration: none;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 20px;
    margin: 5px;
    display: inline-block;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}
.filter-bar a:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--bg-dark);
}
.filter-bar a.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--bg-dark);
    box-shadow: 0 4px 10px rgba(255, 153, 0, 0.4);
}

/* SUIT GRID */
.suit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding-bottom: 80px;
}
.suit-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.suit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.suit-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}
.suit-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
}
.suit-card:hover img {
    transform: scale(1.05);
}
.suit-info {
    padding: 20px;
    text-align: center;
}
.suit-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 5px;
}
.suit-info p {
    color: #777;
    font-style: italic;
    margin-bottom: 15px;
}
.suit-info .view-details {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.2s;
}
.suit-info .view-details:hover {
    border-bottom: 2px solid var(--accent-color);
}
@media (max-width: 768px) {
    .gallery-hero h1 {
        font-size: 2rem;
    }
}

/* ------------------------------------------------------------------- */
/* BLOG DETAIL PAGE STYLES (ELEGANT UPGRADE) */
/* ------------------------------------------------------------------- */

.blog-article {
    /* Slightly wider content column for a professional magazine feel */
    padding: 60px 20px 80px;
    background: var(--color-card-bg); /* Dark card background for the article area */
    border-radius: 12px;
    margin-top: 40px;
    margin-bottom: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* HEADER AND META */
.article-header {
    text-align: center;
    margin-bottom: 50px;
}

.article-title {
    font-size: 2.6rem; /* Bigger title */
    color: var(--color-highlight); /* Vibrant Gold/Orange */
    margin-bottom: 10px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-meta {
    font-size: 1.1em;
    color: #999;
    margin-bottom: 30px;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 10px 0;
}
.article-meta span, .article-meta time {
    font-family: "Fauna One", serif;
    font-weight: 400;
}
.article-meta span:first-child {
    color: var(--color-secondary); /* Highlight author */
    font-weight: 700;
}


/* FEATURED IMAGE */
.article-featured-image {
    /* Full width inside the article container */
    margin: 0; 
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.article-featured-image img {
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease-in-out;
}
/* Subtle hover effect for the image */
.article-featured-image:hover img {
    transform: scale(1.02);
}


/* MAIN CONTENT */
.article-content {
    font-family: "Fauna One", serif;
    font-size: 1.15rem; /* Increased size for readability */
    line-height: 1.8;
    color: var(--color-text);
    padding: 0 30px; /* Internal padding for clean edges */
}
.article-content h2 {
    color: var(--color-secondary); /* Bright Teal/Cyan */
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 2.1rem;
    padding-bottom: 5px;
    text-align: left;
}
.article-content h3 {
    color: var(--color-secondary); /* Bright Teal/Cyan */
    margin-top: 50px;
    margin-bottom: 10px;
    font-size: 1.9rem;
    padding-bottom: 5px;
    text-align: left;
}
.article-content h4 {
    color: var(--color-secondary); /* Bright Teal/Cyan */
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 1.7rem;
    padding-bottom: 5px;
    text-align: left;
}
.article-content p {
    margin-bottom: 10px;
}
.article-content ul, .article-content ol  {
    padding-left: 30px;
}
.article-content a {
    color: var(--color-highlight);
    text-decoration: underline;
    transition: color 0.2s;
}
.article-content a:hover {
    color: var(--color-secondary);
}

/* ELEGANT QUOTE STYLE (Prominent pull-quote) */
.elegant-quote {
    font-style: italic;
    margin: 50px 0;
    padding: 30px 40px;
    border-left: 6px solid var(--color-highlight);
    background: #202020; /* Darker than card-bg for visual break */
    color: var(--color-highlight);
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 700;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}


/* SHARE SECTION */
.share-section {
    border-top: 1px dashed var(--color-secondary); /* Stylish separator */
    border-bottom: 1px dashed var(--color-secondary);
    padding: 30px 30px;
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: center;
}
.share-section h4 {
    color: var(--color-secondary);
    margin-bottom: 20px;
    font-size: 1.5rem;
}
.share-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}
/* Share icons use the existing .share-icon styles from your base CSS */
/* Ensure your base .share-icon styles are loaded for this to work */


/* RELATED ARTICLES */
.related-articles-section {
    padding: 60px 0 100px;
    background: var(--color-light-bg);
}
.related-articles-section h2 {
    text-align: center;
    color: var(--color-highlight);
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-transform: uppercase;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
/* The .blog-card styles are inherited/reused here */
.related-card {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


/* COMMENTS SECTION */
.comments-section {
    padding: 40px 30px;
    border-top: 1px solid #444;
    margin-top: 40px;
}
.comments-section h3 {
    color: var(--color-secondary);
    margin-bottom: 30px;
    font-size: 2rem;
    text-align: center;
}
.no-comments {
    color: #999;
    padding-bottom: 20px;
    text-align: center;
}

.comment-form .form-group {
    margin-bottom: 20px;
}
.comment-form label {
    display: block;
    color: var(--color-text);
    margin-bottom: 5px;
    font-weight: 500;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #555;
    background: #333;
    color: var(--color-text);
    border-radius: 6px;
    transition: border-color 0.3s;
}

.comment-note {
    font-size: 0.9em;
    color: #777;
    margin-top: 15px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 950px) {
    .blog-article {
        margin: 20px;
    }
}
@media (max-width: 850px) {
    .article-title {
        font-size: 3rem;
    }
    .article-content {
        padding: 0 10px;
    }
    .comments-section, .share-section {
        padding: 20px 10px;
    }
}
@media (max-width: 600px) {
    .article-title {
        font-size: 2.2rem;
    }
    .elegant-quote {
        font-size: 1.2rem;
        margin: 30px 0;
    }
    .share-icons {
        flex-direction: column;
    }
    .share-icons a, .share-icons button {
        width: 100%;
        text-align: center;
    }
    .blog-article {
        padding: 30px 15px;
    }
}



/* ... (rest of the style.css before ABOUT SECTION) ... */

    /* ABOUT SECTION (ELEGANT UPGRADE) */
    
    .about-section {
        padding: 80px 0;
        /* Matches the primary background for a clean transition */
        background-color: var(--color-primary); 
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1.2fr; /* Slightly larger text column */
        gap: 60px;
        align-items: center;
        background: var(--color-card-bg); /* Dark card background */
        padding: 50px; /* Increased padding */
        border-radius: 12px;
        border-top: 5px solid var(--color-secondary); /* Strong top border */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6); /* Deeper shadow */
    }

    .about-text h2 {
        color: var(--color-highlight); /* Gold for main heading */
        font-size: 2.5em; /* Slightly larger heading */
        text-transform: uppercase;
        letter-spacing: 1px;
        border-bottom: 3px solid var(--color-secondary); /* Teal separator */
        padding-bottom: 10px;
        margin-bottom: 25px;
        text-align: left; /* Align to the left in the grid */
    }
    
    .about-content-body p {
        font-size: 1.15em;
        color: #ccc;
        margin-bottom: 20px;
    }
    .about-content-body strong {
        color: var(--color-secondary);
        font-weight: 700;
    }


    .about-image {
        border-radius: 8px;
        overflow: hidden;
        border: 4px solid var(--color-highlight); /* Gold frame */
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.05); /* Subtle inner glow */
    }
    .about-image img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        transition: transform 0.5s;
    }
    .about-image img:hover {
        transform: scale(1.1); /* Stronger hover effect */
    }
    
    /* STATS SECTION (ELEGANT UPGRADE) */
    .stats-section {
        text-align: center;
        padding: 60px 0; /* Increased padding */
        background-color: var(--color-light-bg); /* Use light BG for contrast */
        border-top: 5px solid var(--color-highlight); /* Gold border for flair */
        border-bottom: 5px solid var(--color-highlight);
    }

    .stats-grid {
        display: flex;
        justify-content: space-around;
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .stat-item {
        color: var(--color-text);
        padding: 20px;
        background-color: var(--color-card-bg);
        border-radius: 10px;
        flex: 1; /* Equal sizing */
        transition: background-color 0.3s, transform 0.3s;
        border-bottom: 3px solid var(--color-secondary);
    }
    
    .stat-item:hover {
        background-color: #333333;
        transform: translateY(-5px) scale(1.02);
        border-bottom-color: var(--color-highlight); /* Accent change on hover */
    }

    .stat-item i {
        font-size: 3em; /* Larger icon */
        color: var(--color-secondary); /* Teal icon color */
        margin-bottom: 10px;
    }

    .stat-item .value {
        font-size: 3.2em; /* Bigger number */
        font-weight: 800;
        color: var(--color-highlight); /* Gold number for prominence */
        display: block;
        line-height: 1.1;
    }

    .stat-item .label {
        font-size: 1.2em;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 600;
        color: #ccc;
        margin-top: 5px;
    }


    /* FAQS SECTION (ELEGANT UPGRADE) */
    .faq-section {
        margin-bottom: 80px;
        padding: 40px 0;
    }

    .faq-section h2 {
        color: var(--color-secondary);
        font-size: 2.8em;
        text-align: center;
        margin-bottom: 50px;
        text-transform: uppercase;
        border-bottom: 2px solid var(--color-highlight);
        padding-bottom: 10px;
        max-width: 600px;
        margin: 0 auto 50px auto;
    }

    .faq-item {
        margin-bottom: 20px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    
    .faq-item details {
        background: var(--color-card-bg);
        border: none;
        border-left: 5px solid var(--color-highlight); /* Gold left bar for attention */
        transition: border-color 0.3s;
    }
    .faq-item details[open] {
        border-color: var(--color-secondary); /* Teal when open */
    }
    
    .faq-item summary {
        display: block; /* To allow padding and full-width click */
        cursor: pointer;
        padding: 20px 25px;
        font-size: 1.3em;
        font-weight: bold;
        color: var(--color-text);
        position: relative;
        list-style: none; /* Remove default triangle in most browsers */
        transition: background-color 0.3s;
    }
    
    .faq-item summary:hover {
        background-color: #333333; /* Darken slightly on hover */
    }
    
    /* Custom arrow indicator */
    .faq-item summary::after {
        content: '+';
        position: absolute;
        right: 25px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.5em;
        color: var(--color-secondary);
        transition: transform 0.3s, color 0.3s;
    }
    
    .faq-item details[open] summary::after {
        content: '-';
        transform: translateY(-50%) rotate(0deg);
        color: var(--color-highlight);
    }

    .faq-content {
        padding: 0 25px 25px 25px;
        border-top: 1px solid #444; /* Separator between question and answer */
    }
    
    .faq-content p {
        font-size: 1.1em;
        color: #ccc;
        margin-top: 15px;
    }

    .faq-content strong {
        color: var(--color-highlight);
        font-weight: bold;
    }

    .faq-content span.highlight {
        color: var(--color-highlight-light);
        font-size: 22px;
        font-weight: 600;
    }


    /* MEDIA QUERY ADJUSTMENTS for new layouts */
    @media (max-width: 800px) {
        .about-grid {
            grid-template-columns: 1fr;
            padding: 30px 20px;
            gap: 30px;
        }
        .stats-grid {
            flex-direction: column;
            gap: 20px;
        }
        .stat-item .value {
             font-size: 2.5em;
        }
        .about-text h2 {
            font-size: 2em;
            text-align: center;
        }
    }

/* ... (rest of the style.css after ABOUT SECTION) ... */

/* ------------------------------------------------------------------- */
/* COMMISSIONS PAGE STYLES (ELEGANT UPGRADE) */
/* ------------------------------------------------------------------- */

.commissions-intro {
    padding: 60px 0;
    text-align: center;
}
.commissions-intro h1 {
    color: var(--color-highlight);
    font-size: 3.5em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.commissions-intro p {
    font-size: 1.3em;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

/* --- Commission Type Cards (Fullsuit/Partial) --- */
.type-selector-section {
    padding: 80px 0;
    /* Use the light background for separation from the intro */
    background: var(--color-light-bg); 
}

.type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.type-card-commission {
    background-color: var(--color-card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s, box-shadow 0.4s;
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensure equal height */
}

.type-card-commission:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
    border-color: var(--color-secondary); /* Teal highlight on hover */
}

.type-image-commission {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    border-bottom: 5px solid var(--color-highlight);
}

.type-content-commission {
    padding: 30px;
    flex-grow: 1;
    text-align: center;
}

.type-content-commission h4 {
    color: var(--color-secondary);
    font-size: 2em;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 700;
}

.type-content-commission p {
    color: #ccc;
    font-size: 1.1em;
    margin-bottom: 25px;
}

.type-features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 30px;
}

.type-features-list li {
    font-family: "Fauna One", serif;
    padding: 8px 0;
    border-bottom: 1px dashed #3a3a3a;
    color: var(--color-text);
    font-size: 1.05em;
}

.type-features-list li i {
    color: var(--color-highlight); /* Gold checkmark */
    margin-right: 10px;
    font-size: 1.2em;
}

/* Price block */
.price-block {
    background-color: #252525;
    padding: 15px;
    border-radius: 8px;
    margin-top: auto; /* Push to the bottom */
}

.price-block .label {
    color: var(--color-highlight-light);
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    font-weight: 600;
}

.price-block .value {
    color: var(--color-highlight);
    font-size: 2.5em;
    font-weight: 800;
    line-height: 1.1;
    margin-top: 5px;
}

/* --- The Process Timeline --- */

.process-section {
    padding: 100px 0;
    background-color: var(--color-primary);
}

.process-section h2 {
    color: var(--color-secondary);
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-icon-container {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5em;
    color: var(--color-primary);
    box-shadow: 0 0 0 8px var(--color-primary), 0 0 0 10px var(--color-highlight); /* Gold ring effect */
    z-index: 10;
}

.step-content-container {
    flex-grow: 1;
    margin-left: 30px;
    padding: 20px 30px;
    background-color: var(--color-card-bg);
    border-radius: 8px;
    border-left: 5px solid var(--color-highlight);
    transition: transform 0.3s, border-color 0.3s;
}

.process-step:hover .step-content-container {
    transform: translateX(5px);
    border-color: var(--color-secondary);
}

.step-content-container h3 {
    color: var(--color-highlight);
    font-size: 1.5em;
    margin-bottom: 10px;
    border-bottom: 1px solid #444;
    padding-bottom: 5px;
}

.step-content-container p {
    color: #ccc;
    font-size: 1.05em;
    margin-bottom: 0;
}

/* Vertical line for the process timeline */
.process-timeline {
    position: relative;
    padding-left: 40px; /* Space for the line and icons */
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 78px; /* Position line relative to the step icons center (80/2 - 2) */
    width: 4px;
    height: calc(100% - 80px); /* Stop line just before the last icon */
    background-color: var(--color-secondary);
    z-index: 5;
}

/* Media Query for mobile timeline adjustment */
@media (max-width: 768px) {
    .type-grid {
        grid-template-columns: 1fr;
    }
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
    }
    .step-icon-container {
        margin-bottom: 20px;
        position: relative;
        left: 0;
    }
    .step-content-container {
        margin-left: 0;
        width: 100%;
        border-left: none;
        border-bottom: 5px solid var(--color-highlight);
    }
    .process-timeline::before {
        display: none; /* Hide vertical line on mobile */
    }
}

/* --- CTA Section --- */
.commission-cta {
    padding: 60px 0;
    text-align: center;
    background: #2f5257;
    border-top: 5px solid var(--secondary-color);
}
.commission-cta h2 {
    color: var(--color-highlight);
    font-size: 2.5em;
    margin-bottom: 10px;
}
.commission-cta p {
    font-size: 1.2em;
    color: #ccc;
    margin-bottom: 30px;
}

/* Update the grid for 5 cards to handle variable widths gracefully */
.type-grid {
    /* Auto-fit allows 2-3 columns on wide screens, 1 on mobile */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px;
}

/* Style for the new subtitle/tag */
.type-category-tag {
    display: inline-block;
    color: var(--color-secondary);
    background: rgba(0, 188, 212, 0.1); /* Light teal background */
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Special styling for the Accessories card to emphasize contact quote */
.type-card-commission[data-type="accessories"] .price-block .value {
    font-size: 1.8em; /* Slightly smaller text for the long 'Contact for Quote' value */
    line-height: 1.5;
}

/* Optional: Emphasize the two fullsuit types */
.type-card-commission[data-type="digitigrade"] .type-image-commission,
.type-card-commission[data-type="plantigrade"] .type-image-commission {
    border-bottom: 5px solid var(--color-secondary); /* Use Teal to denote premium Fullsuits */
}
.type-card-commission[data-type="digitigrade"]:hover {
    border-color: var(--color-highlight); /* Gold for the top-tier hover */
}

/* Add a subtitle style for the section */
.section-subtitle {
    text-align: center;
    color: #999;
    font-size: 1.1em;
    margin-bottom: 40px;
}


/* Adjust the default minmax width for very large screens to keep cards proportional */
@media (min-width: 1600px) {
    .type-grid {
        grid-template-columns: repeat(4, 1fr); /* Force 5 columns on very wide displays */
    }
}

/* -------------------------------------- */
/* --- Custom CSS for the Quote Form --- */
/* -------------------------------------- */

/* Container for the quote page to maintain theme consistency */
.quote-page {
    padding: 80px 0;
    background-color: var(--color-primary);
}

/* Quote Section Title */
.quote-page .section-title {
    color: var(--color-text);
    margin-bottom: 40px;
}

/* Multi-Step Form Layout */
.quote-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-card {
    background: var(--color-card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 188, 212, 0.2); /* Soft teal border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.step-header {
    margin-bottom: 25px;
    border-bottom: 2px solid var(--color-secondary);
    padding-bottom: 10px;
}

.step-header h3 {
    color: var(--color-secondary);
    font-size: 1.8em;
    font-weight: 600;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--color-text);
    margin-bottom: 8px;
    font-weight: 400;
    font-size: 1.5em;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

/* Styling for all form inputs */
.form-card input:not([type="radio"]):not([type="checkbox"]),
.form-card select,
.form-card textarea {
    width: 100%;
    padding: 16px 15px;
    background-color: var(--color-primary); /* Darker input background */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: var(--color-text);
    font-size: 1.6em;
    font-weight: 400;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-card select option {
    font-size: 1.1em;
    font-weight: 400;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
    border-color: var(--color-secondary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.3);
}


.form-card textarea {
    min-height: 120px;
    resize: vertical;
}

/* Fursuit Type Grid - Custom Radio Buttons/Cards */
.type-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.type-option-card {
    background-color: var(--color-primary);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.type-option-card:hover {
    border-color: var(--color-highlight);
    background-color: var(--color-light-bg);
}

.type-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Style for the selected card */
.type-option-card input[type="radio"]:checked + .type-content {
    background-color: rgba(0, 188, 212, 0.1);
    border: 2px solid var(--color-secondary);
    border-radius: 6px;
    box-shadow: 0 0 8px var(--color-secondary);
    transform: scale(1.02);
}

.type-content h4 {
    color: var(--color-highlight);
    margin-bottom: 5px;
    font-size: 1.2em;
    font-weight: 600;
}

.type-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
    line-height: 1.4;
}

/* Checkbox/Upgrade Grid */
.upgrade-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.upgrade-grid label {
    font-size: 1.3em;
}

.checkbox-label {
    display: flex;
    align-items: center;
    background-color: var(--color-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--color-text);
    font-size: 0.95em;
}

.checkbox-label:hover {
    background-color: var(--color-light-bg);
    border-color: var(--color-highlight-light);
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    accent-color: var(--color-secondary);
    width: 18px;
    height: 18px;
}

/* File Upload Customization */
.file-upload-wrapper {
    background-color: var(--color-primary);
    border: 2px dashed rgba(0, 188, 212, 0.5);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-wrapper:hover {
    background-color: var(--color-light-bg);
    border-color: var(--color-highlight);
}

.file-upload-wrapper input[type="file"] {
    display: none;
}

.file-upload-wrapper i {
    font-size: 2.5em;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.file-upload-wrapper p {
    color: rgba(255, 255, 255, 0.8);
    margin: 5px 0;
    font-family: "Josefin Sans", sans-serif;
}

#file-names-list {
    margin-top: 15px;
    color: var(--color-highlight);
    font-size: 0.9em;
}

/* Submission/CTA Button */
.submit-group {
    text-align: center;
    margin-top: 30px;
}

.submit-group .cta-button {
    /* Reusing existing CTA style but making it a block/wider button */
    display: inline-block;
    width: auto;
    min-width: 300px;
}

/* Status Messages */
.status-message {
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
}

.status-message.success {
    background-color: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

.status-message.error {
    background-color: rgba(244, 67, 54, 0.2);
    color: #F44336;
    border: 1px solid #F44336;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .type-selection-grid {
        grid-template-columns: 1fr;
    }
    .upgrade-grid {
        grid-template-columns: 1fr;
    }
    .submit-group .cta-button {
        min-width: 100%;
    }
}

/* -------------------------------------- */
/* --- NEW: International Tel Input Overrides --- */
/* -------------------------------------- */

/* The main container wrapper must take full width inside the form group */
.iti { 
    width: 100%; 
    display: block; /* Ensure it takes up space correctly */
}

/* Style the input field itself */
.iti input[type="tel"] {
    /* ITI sets specific padding/positioning, so we primarily adjust colors */
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    background-color: var(--color-primary) !important;
    color: var(--color-text) !important;
    border-radius: 6px !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    font-size: 1.4em !important;
}

/* Style for the flag dropdown container */
.iti__flag-container {
    padding: 0;
}

/* Style for the dropdown button (the flag itself) */
.iti__flag-container .iti__selected-flag {
    height: 100%;
    /* Match the input height */
    background-color: var(--color-primary);
    border-radius: 6px 0 0 6px;
    padding-left: 10px;
}

/* Style for the dropdown list */
.iti__dropdown-content {
    background-color: var(--color-card-bg); /* Dark background */
    border: 1px solid var(--color-secondary); /* Teal border */
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 1000; /* Ensure it's above other elements */
}

/* Style for individual country list items */
.iti__country-list .iti__country {
    color: var(--color-text);
    padding: 8px 15px;
    font-family: "Fauna One", serif;
    font-size: 1.4em;
    background-color: var(--color-primary);
}

/* Highlighted (hover/keyboard selected) country */
.iti__country-list .iti__country.iti__highlight {
    background-color: var(--color-light-bg); /* Lighter dark background for hover */
    color: var(--color-secondary); /* Teal text color */
}

/* Style the dial code display next to the flag */
.iti__dial-code {
    color: var(--color-text);
    font-weight: 600;
    font-size: 1.4em;
}

.iti--separate-dial-code .iti__selected-dial-code {
    font-size: 1.6em;
    font-weight: 600;
}

/* Add focus styling to match other form elements */
.iti input[type="tel"]:focus {
    border-color: var(--color-secondary) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.3) !important;
}

/* Additional fix for responsiveness on small screens */
@media (max-width: 768px) {
    .iti {
        font-size: 16px; /* Prevent zoom on iOS */
    }
}


/* -------------------------------------- */
/* --- Event List Page Styles (events.php) --- */
/* -------------------------------------- */

.events-list-section {
    padding: 60px 0;
    min-height: 80vh;
}

.event-grid {
    display: grid;
    gap: 30px;
    /* Responsive grid: 1 column on small, 2 on medium/large */
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* slightly wider cards */
    margin-top: 40px;
}

.event-card {
    background: var(--color-card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    border-left: 5px solid var(--color-secondary); /* Accent line */
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    border-left-color: var(--color-highlight);
}

.event-card h3 {
    font-family: "Josefin Sans", sans-serif;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 15px;
    font-size: 1.8em;
}

.event-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align date/location and status to top */
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.event-meta .date-location {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    font-weight: 400;
    font-family: "Josefin Sans", sans-serif; /* Use Josefin for high-contrast meta data */
}

.event-meta .date-location i {
    color: var(--color-highlight); /* Use gold for icons */
    margin-right: 5px;
}

.event-status {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Status colors */
.status-upcoming {
    background: rgba(0, 188, 212, 0.15); /* Teal accent */
    color: var(--color-secondary);
}
.status-on { /* New status for exhibitions */
    background: rgba(231, 174, 60, 0.15); /* Gold accent */
    color: var(--color-highlight);
}
.status-archived {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
}

/* Detailed Information Block */
.event-details {
    margin-bottom: 25px;
}

.event-details .detail-line {
    margin-bottom: 8px;
    font-family: "Josefin Sans", sans-serif;
    font-size: 1em;
    color: var(--color-secondary);
}

.event-details .detail-line i {
    margin-right: 8px;
    color: var(--color-highlight);
}

.event-details .event-description {
    color: rgba(255, 255, 255, 0.85);
    margin-top: 15px;
    line-height: 1.6;
    font-family: "Fauna One", serif;
}

/* Card Footer and Sharing */
.card-footer-actions {
    margin-top: auto; /* Pushes the footer to the bottom */
    display: block;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.event-card .event-link {
    display: inline-block;
    padding: 14px 24px;
    background-color: var(--color-highlight);
    color: var(--color-primary);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.1s ease;
    text-transform: uppercase;
    font-size: 0.9em;
    margin-bottom: 20px;
}

.event-card .event-link:hover {
    background-color: var(--color-highlight-light);
    color: var(--color-text);
}

.share-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.share-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1em;
    font-weight: 400;

}

.share-icons a {
    color: var(--color-secondary);
    font-size: 1.3em;
    transition: color 0.2s ease;
}

.share-icons a:hover {
    color: var(--color-highlight);
}

/* Suggested CSS to be added to your main stylesheet */

/* General preview styling */
#file-previews-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.file-preview {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%; /* Default to full width for better mobile experience */
    min-height: 60px;
}

/* Container for image and text */
.file-info-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-grow: 1;
}

.file-name-display {
    font-size: 0.9em;
    word-break: break-all;
}

/* Style for the preview image */
.preview-image {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid var(--color-primary, #9900ff); /* Example color */
}

/* Status colors and icons */
.file-preview-uploading .status-icon {
    color: #ffd700; /* Gold */
}

.file-preview-success {
    border-color: #28a745;
}
.file-preview-success .status-icon {
    color: #28a745; /* Green */
}

.file-preview-error {
    border-color: #dc3545;
}
.file-preview-error .status-icon {
    color: #dc3545; /* Red */
}

/* Remove button styling */
.remove-btn {
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: color 0.2s;
}
.remove-btn:hover {
    color: #dc3545; /* Red on hover */
}

/* Styling for the File Upload Previews */

#file-previews-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.file-preview {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    min-width: 250px;
    transition: all 0.2s ease;
}

.file-preview-error {
    border-color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.2);
}

.file-preview-success {
    border-color: #2ecc71;
    background-color: rgba(46, 204, 113, 0.1);
}

.file-preview .preview-content {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 4px;
    margin-right: 10px;
    background-color: rgba(255, 255, 255, 0.1);
}

.file-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.file-placeholder-icon {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.5);
}

.file-preview .preview-details {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.file-preview .file-name {
    flex-grow: 1;
    font-size: 0.9em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-right: 10px;
}

.file-preview .status-icon {
    font-size: 1.1em;
    margin-right: 5px;
}

.file-preview-success .status-icon {
    color: #2ecc71;
}

.file-preview-error .status-icon {
    color: #e74c3c;
}

.file-preview .remove-btn {
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
    font-size: 1.1em;
}

.file-preview .remove-btn:hover {
    color: #e74c3c;
}
 
.faqs-privacy p strong , .faqs-privacy li {
    font-size: 1.2em;
    font-weight: 400;
}

/* --- Floating WhatsApp Button Styles --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366; /* WhatsApp Green */
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    line-height: 60px; /* Vertically centers the icon */
    z-index: 1000; /* Ensure it stays above other content */
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.05);
}

/* Optional: Adjust position for smaller screens if needed */
@media screen and (max-width: 600px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
        line-height: 50px;
    }
}


.events-list-section .event-list {
    display: flex;
    flex-direction: column;
    gap: 30px; /* Space between list items */
}

.events-list-section .list-item {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.events-list-section .list-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.events-list-section .list-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--color-light-bg);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.events-list-section .list-item-header h3 {
    font-size: 1.75em;
    color: var(--color-highlight-light);
    margin: 0;
    font-weight: 800;
}

.events-list-section .event-status {
    padding: 6px 12px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.85em;
    text-transform: uppercase;
}

.events-list-section .status-upcoming {
    background-color: var(--color-primary); /* Light green */
    color: var(--color-secondary); /* Dark green text */
}

/* Fallback for other statuses */
.events-list-section .status-archived {
    background-color: #e5e7eb; 
    color: var(--color-text);
}


.events-list-section .list-item-body {
    display: flex;
    flex-direction: column;
}

.events-list-section .event-meta-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid for details */
    gap: 15px 30px;
    margin-bottom: 20px;
}

.events-list-section .detail-line {
    font-size: 1em;
    color: var(--color-text);
    margin: 0;
    display: flex;
    align-items: center;
}

.events-list-section .detail-line i {
    color: var(--color-highlight);
    margin-right: 8px;
    font-size: 1.1em;
}

.events-list-section .event-description-summary {
    font-size: 1em;
    line-height: 1.6;
    color: var(--color-text); /* Medium gray */
    margin: 0 0 20px 0;
    padding: 15px;
    background-color: var(--color-light-bg);
    border-radius: 8px;
}


.events-list-section .list-item-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px dashed var(--color-border);
}

.events-list-section .cta-link-button {
    background-color: #059669;
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.events-list-section .cta-link-button:hover {
    background-color: var(--color-highlight); /* Darker secondary */
}

.events-list-section .share-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.events-list-section .share-text {
    font-weight: 500;
    color: #6b7280;
}

.events-list-section .share-icons a {
    color: var(--color-highlight);
    font-size: 1.25em;
    transition: color 0.2s ease;
}

.events-list-section .share-icons a:hover {
    color: var(--color-secondary);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .events-list-section .list-item-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .events-list-section .list-item-header h3 {
        font-size: 1.5em;
        margin-bottom: 10px;
    }
    .events-list-section .event-meta-info {
        grid-template-columns: 1fr;
    }
    .events-list-section .list-item-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

.review-profile-placeholder {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--accent-color); /* bluish gray tone */
  color: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  margin-right: 20px;
  line-height: 1px;
}
