/*------------------------------------------------------------------
[TABLE OF CONTENTS]

1. ROOT VARIABLES
2. RESET & BASE STYLES
    - HTML, Body
    - Typography (Headings, Paragraphs, Links)
    - Scrollbar (Optional enhancement)
3. LAYOUT & GRID
    - Container
    - Columns (Bulma-like: .columns, .column, .is-*)
    - Section Defaults
4. HEADER & NAVIGATION
    - Site Header
    - Logo
    - Main Navigation (Desktop & Mobile Burger)
5. GLOBAL COMPONENT STYLES
    - Buttons (Primary, Secondary, etc.)
    - Forms (Input, Textarea, Label, Field, Control)
    - Cards (Base Card, Product Card, Designer Card, Resource Card)
6. SECTION-SPECIFIC STYLES
    - Hero Section
    - Mission Section
    - Collections Section (Portfolio)
    - New Arrivals Section (Events)
        - Statistical Widgets
    - Lookbook Section (Media)
        - Image Gallery
        - Custom Slider Placeholder
    - Designers Section (Instructors)
    - Customer Stories Section (Testimonials)
        - Testimonial Slider
    - Return Policy Section
    - External Resources Section
    - Contact Section
7. FOOTER
    - Footer Layout
    - Footer Links
    - Footer Social Links
8. MODAL
9. PARTICLE ANIMATION PLACEHOLDER
10. SPECIFIC PAGE STYLES
    - Success Page
    - Privacy & Terms Page
11. ANIMATIONS & TRANSITIONS
12. RESPONSIVE DESIGN (Media Queries)
-------------------------------------------------------------------*/

/* 1. ROOT VARIABLES */
:root {
    --primary-color: #7F00FF; /* Electric Violet */
    --primary-color-darker: #6A00D3;
    --secondary-color: #E100FF; /* Bright Magenta */
    --accent-color-1: #00FFBF; /* Spring Green / Teal */
    --accent-color-1-darker: #00D39F;
    --accent-color-2: #FFBF00; /* Amber / Gold */
    --accent-color-2-darker: #D9A300;

    --neutral-dark: #121212;
    --neutral-medium: #1c1c1e; /* Slightly lighter dark for backgrounds */
    --neutral-light: #F8F9FA;
    --neutral-card-bg: #FFFFFF; /* White for cards on light section bg */
    --neutral-section-bg: #f0f2f5; /* Light grey for some sections */


    --text-dark: #212529;
    --text-light: #FFFFFF;
    --text-muted: #6c757d;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Source Sans Pro', sans-serif;

    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    --gradient-hero-overlay: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);

    --border-radius-sm: 4px;
    --border-radius: 8px;
    --border-radius-lg: 12px;

    --header-height: 70px; /* Adjusted from 80px */
    --transition-speed: 0.3s;
    --transition-timing: ease-in-out;
}

/* 2. RESET & BASE STYLES */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 100%; /* Corresponds to 16px by default */
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--neutral-light);
    padding-top: var(--header-height); /* For fixed header */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 0.75rem; /* Consistent bottom margin */
}
/* Bulma-like title classes from HTML */
.title.is-1 { font-size: 3rem; }
.title.is-2 { font-size: 2.25rem; margin-bottom: 1.5rem; } /* Common section title size */
.title.is-3 { font-size: 1.75rem; }
.title.is-4 { font-size: 1.5rem; }
.title.is-5 { font-size: 1.25rem; }
.subtitle.is-5 { font-size: 1.1rem; color: var(--text-muted); line-height: 1.5; }

p {
    margin-bottom: 1.25rem;
    font-size: 1rem; /* Base paragraph size */
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) var(--transition-timing);
}
a:hover {
    color: var(--primary-color-darker);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style-position: inside;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}
li {
    margin-bottom: 0.5rem;
}

/* Optional: Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--neutral-light);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: var(--border-radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color-darker);
}

/* 3. LAYOUT & GRID */
.container {
    width: 90%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Bulma-like column system */
.columns {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
    margin-top: -0.75rem; /* For consistent spacing */
}
.columns:not(:last-child) {
    margin-bottom: calc(1.5rem - 0.75rem);
}
.column {
    display: block;
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 1;
    padding: 0.75rem;
    min-width: 0; /* Prevents flex items from overflowing */
}
.column.is-one-third { flex: none; width: 33.3333%; }
.column.is-two-thirds { flex: none; width: 66.6667%; }
.column.is-half { flex: none; width: 50%; }
.column.is-full { flex: none; width: 100%; }
.columns.is-vcentered { align-items: center; }
.columns.is-centered { justify-content: center; }
.columns.is-multiline { flex-wrap: wrap; }
.columns.is-mobile { display: flex; } /* On mobile, columns remain side-by-side */


.section {
    padding: 4rem 0; /* Natural height, adjusted padding from 60px */
}
.section:nth-child(even) { /* Alternate section backgrounds for visual rhythm if desired */
    /* background-color: var(--neutral-section-bg); */
}
.section-title {
    text-align: center;
    color: var(--text-dark); /* Ensure high contrast */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05); /* Subtle shadow for depth */
    margin-bottom: 1rem; /* Reduced from 1.5rem for tighter design */
}
.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem; /* Reduced from 3rem */
}

/* Utility classes */
.has-text-centered { text-align: center !important; }
.is-fullwidth { width: 100% !important; }

/* 4. HEADER & NAVIGATION */
.site-header {
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 0 1rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    transition: background-color var(--transition-speed) var(--transition-timing), box-shadow var(--transition-speed) var(--transition-timing);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}
.logo:hover {
    color: var(--primary-color-darker);
}

.main-navigation .nav-links {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}
.main-navigation .nav-links li {
    margin: 0 0 0 1.5rem; /* LTR spacing */
}
.main-navigation .nav-links a {
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    padding: 0.5rem 0.25rem;
    position: relative;
    transition: color var(--transition-speed) var(--transition-timing);
}
.main-navigation .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) var(--transition-timing);
}
.main-navigation .nav-links a:hover,
.main-navigation .nav-links a.active /* Add .active class via JS for current page/section */ {
    color: var(--primary-color);
}
.main-navigation .nav-links a:hover::after,
.main-navigation .nav-links a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* 5. GLOBAL COMPONENT STYLES */
/* Buttons */
.button, button, input[type="submit"], input[type="button"] {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 2px solid transparent;
    padding: 0.75rem 1.75rem; /* Generous padding */
    line-height: 1.5;
    border-radius: var(--border-radius-lg); /* More rounded */
    transition: all var(--transition-speed) var(--transition-timing);
    text-decoration: none; /* Ensure no underline on <a> tags styled as buttons */
}
.button:hover, button:hover, input[type="submit"]:hover, input[type="button"]:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.button:focus, button:focus, input[type="submit"]:focus, input[type="button"]:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(var(--rgb-primary-color, 127,0,255), 0.25); /* Focus ring with primary color */
}

.primary-button {
    background-image: var(--gradient-primary);
    background-size: 200% auto; /* For hover animation */
    color: var(--text-light);
    border-color: transparent;
}
.primary-button:hover {
    background-position: right center; /* Change gradient direction on hover */
    color: var(--text-light);
    box-shadow: var(--shadow-md);
}

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

/* Forms */
.field:not(:last-child) {
    margin-bottom: 1rem;
}
.label {
    color: var(--text-dark);
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.input, .textarea {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: var(--font-body);
    line-height: 1.5;
    color: var(--text-dark);
    background-color: #fff; /* White background for inputs */
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: var(--border-radius-sm);
    transition: border-color var(--transition-speed) var(--transition-timing), box-shadow var(--transition-speed) var(--transition-timing);
}
.input:focus, .textarea:focus {
    color: var(--text-dark);
    background-color: #fff;
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(var(--rgb-primary-color, 127,0,255), 0.25);
}
.textarea {
    min-height: 120px;
    resize: vertical;
}

/* Cards */
.card {
    background-color: var(--neutral-card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform var(--transition-speed) var(--transition-timing), box-shadow var(--transition-speed) var(--transition-timing);
    display: flex;
    flex-direction: column;
    height: 100%; /* For equal height cards in a row */
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.card-image { /* Container for the image */
    position: relative;
    overflow: hidden;
    width: 100%;
    /* Default height for card images, can be overridden for specific card types */
    height: 250px; /* Example fixed height */
    display: flex; /* For centering the img if it's smaller (though object-fit handles it) */
    align-items: center;
    justify-content: center;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crucial for consistent image display */
    display: block; /* Remove extra space below image */
    transition: transform 0.4s ease;
}
.card:hover .card-image img {
    transform: scale(1.05); /* Subtle zoom on card hover */
}
.card-content {
    padding: 1.5rem;
    flex-grow: 1; /* Allows content to fill space if card heights are equalized */
    /* text-align: center; For card types where all content should be centered */
}
.card .title.is-4, .card .title.is-5 {
    margin-bottom: 0.5rem;
}
.card p:last-child {
    margin-bottom: 0;
}

/* Specific Card Types Styling */
.product-card .card-content {
    text-align: center;
}
.product-title {
    font-size: 1.3rem;
}
.product-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    min-height: 60px; /* Ensure some space for description */
    margin-bottom: 1rem;
}
.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.product-card .card-image {
    height: 300px; /* Taller images for products */
}

.designer-card, .resource-card {
    text-align: center;
}
.designer-card .card-image {
    height: 200px;
    width: 200px; /* For circular or square image */
    border-radius: 50%; /* For circular designer images */
    margin: 1.5rem auto 0; /* Center the image container */
}
.designer-card .card-image img {
    border-radius: 50%;
}
.designer-role {
    font-size: 0.9rem;
    color: var(--accent-color-1);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.resource-card .card-content {
    text-align: left;
}
.resource-title a {
    color: var(--primary-color);
    font-family: var(--font-body); /* Resources titles can be body font */
    font-weight: 600;
}
.resource-title a:hover {
    color: var(--primary-color-darker);
}
.resource-description {
    font-size: 0.9em;
    color: var(--text-muted);
}


/* 6. SECTION-SPECIFIC STYLES */
/* Hero Section */
.hero-section {
    /* min-height: calc(100vh - var(--header-height)); */ /* Removed fixed min-height */
    padding: 8rem 0; /* Generous padding for content to define height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative; /* For pseudo-elements or absolutely positioned content */
    color: var(--text-light); /* As per prompt */
}
.hero-content {
    max-width: 800px;
    position: relative; /* Ensure text is above overlay if any CSS overlay is added */
    z-index: 1;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light); /* As per prompt */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Stronger shadow for readability */
}
.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: var(--text-light); /* As per prompt */
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}

/* Mission Section */
.mission-section .image-container img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* Collections Section (Portfolio) */
/* Uses .product-card defined above */

/* New Arrivals Section (Events) */
.new-arrivals-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-light);
}
.new-arrivals-section .section-title,
.new-arrivals-section .section-subtitle,
.new-arrivals-section .event-highlight h3,
.new-arrivals-section .event-highlight p {
    color: var(--text-light); /* Ensure text is light on dark bg */
}
.new-arrivals-section .section-title { text-shadow: 1px 1px 3px rgba(0,0,0,0.7); }
.new-arrivals-section .section-subtitle { text-shadow: 1px 1px 2px rgba(0,0,0,0.5); }

.event-highlight {
    background-color: rgba(0,0,0,0.3); /* Darker overlay for content box */
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}
.event-highlight h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.event-date {
    font-weight: 600;
    color: var(--accent-color-2) !important; /* Standout date color */
    margin-top: 1rem;
}
/* Statistical Widgets */
.statistical-widgets {
    margin-top: 2rem;
}
.statistical-widgets .column {
    text-align: center;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-light); /* Ensure light on dark BG */
    line-height: 1;
}
.stat-label {
    font-size: 1rem;
    color: var(--text-light); /* Ensure light on dark BG */
    opacity: 0.9;
}

/* Lookbook Section (Media) */
.image-gallery .card {
    box-shadow: none; /* Simpler cards for gallery */
    border: 1px solid #eee;
}
.image-gallery .card-image {
    height: 350px; /* Consistent height for lookbook images */
}
.image-gallery .card-content {
    padding: 1rem;
    text-align: center;
}
.image-gallery .card .title.is-5 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
}
.custom-slider-container {
    background-color: var(--neutral-card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
    box-shadow: var(--shadow-sm);
}

/* Designers Section (Instructors) */
/* Uses .designer-card defined above */

/* Customer Stories Section (Testimonials) */
.customer-stories-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Uses default section padding */
}
.customer-stories-section .section-title,
.customer-stories-section .section-subtitle {
    color: var(--text-dark); /* Assuming the background overlay makes it light enough */
}
.testimonial-slider .card {
    background-color: var(--neutral-card-bg); /* White background for testimonial cards */
    border-left: 5px solid var(--primary-color);
    box-shadow: var(--shadow-md);
    padding: 1.5rem; /* Reduced padding from card-content default */
}
.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
    text-align: right;
}
.slider-controls button {
    margin: 0 0.5rem;
}

/* Return Policy Section */
.return-policy-section .content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.4rem; /* Slightly smaller for subheadings */
}
.return-policy-section .content ul, .return-policy-section .content ol {
    margin-left: 0; /* Remove default browser indent if Bulma doesn't */
    padding-left: 1.5rem; /* Indent list items */
}

/* External Resources Section */
/* Uses .resource-card defined above */

/* Contact Section */
.contact-section {
    background-color: var(--neutral-section-bg); /* Light grey background */
}
.contact-form {
    background-color: var(--neutral-card-bg);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}
.contact-info {
    padding-left: 2rem; /* Spacing from form on larger screens */
}
.contact-info h3 {
    margin-bottom: 1rem;
}
.contact-info p {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}
.contact-info p strong {
    color: var(--text-dark);
}

/* 7. FOOTER */
.site-footer {
    background-color: var(--neutral-dark);
    color: var(--text-light);
    padding: 3rem 0 1.5rem;
    font-size: 0.9rem;
}
.site-footer .container {
    /* Standard container width */
}
.footer-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
}
.site-footer p {
    color: #adb5bd; /* Lighter grey for footer text */
    margin-bottom: 0.75rem;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.5rem;
}
.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: color var(--transition-speed) var(--transition-timing), padding-left var(--transition-speed) var(--transition-timing);
}
.footer-links a:hover {
    color: var(--accent-color-1);
    padding-left: 5px; /* Subtle indent on hover */
    text-decoration: none;
}
.footer-social-links {
    list-style: none;
    padding: 0;
    margin: 0;
    /* display: flex; Align horizontally if needed */
}
.footer-social-links li {
    margin-bottom: 0.3rem;
    /* margin-right: 1rem; If horizontal */
}
.footer-social-links a { /* Text links as per prompt */
    color: #adb5bd;
    text-decoration: none;
    font-weight: 600; /* Make them slightly bolder */
}
.footer-social-links a:hover {
    color: var(--accent-color-1);
}
.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: #868e96;
}

/* 8. MODAL */
.modal {
    display: none; /* Hidden by default, JS toggles this or an 'is-active' class */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Prevent scrollbars when modal is open */
}
.modal.is-active { /* Add this class via JS to show */
    display: flex;
}
.modal-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.86); /* Dark overlay */
}
.modal-content {
    background-color: var(--neutral-card-bg);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    max-width: 600px; /* Or responsive width */
    width: 90%;
    position: relative;
    z-index: 2001;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    /* Glassmorphism example:
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--text-light);
    */
}
.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    font-size: 1.5rem; /* Adjust for better icon size */
    cursor: pointer;
    color: var(--text-muted);
}
.modal-close:hover {
    color: var(--text-dark);
}
.modal-content .title {
    margin-bottom: 1rem;
}
#modal-product-image {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: var(--border-radius-sm);
}

/* 9. PARTICLE ANIMATION PLACEHOLDER */
#particles-js-placeholder {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1; /* Behind all content */
    background-color: var(--neutral-dark); /* Fallback or base for particles */
    /* background-image: linear-gradient(180deg, var(--neutral-dark) 0%, #2a2a2e 100%); */
}

/* 10. SPECIFIC PAGE STYLES */
/* Success Page */
body.success-page { /* Add class="success-page" to body of success.html */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - var(--header-height)); /* Full viewport height minus header */
    text-align: center;
    padding: 2rem;
    padding-top: var(--header-height); /* Ensure header doesn't overlap */
}
.success-page .main-content {
    max-width: 600px;
}
.success-page h1 {
    color: var(--accent-color-1);
    font-size: 3rem;
}
.success-page p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Privacy & Terms Pages */
body.privacy-page .main-content,
body.terms-page .main-content { /* Add class to body of privacy.html and terms.html */
    padding-top: 3rem; /* Additional top padding for content, body already has header padding */
    padding-bottom: 3rem;
}
.privacy-page .container,
.terms-page .container {
    background-color: var(--neutral-card-bg);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}
.privacy-page h1, .terms-page h1 {
    margin-bottom: 2rem;
    text-align: center;
}
.privacy-page h2, .terms-page h2 {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* 11. ANIMATIONS & TRANSITIONS (ScrollReveal/GSAP are JS-driven) */
/* Basic hover transitions are defined on elements directly */

/* "Read more" link style */
.read-more-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: color var(--transition-speed) var(--transition-timing), border-bottom-color var(--transition-speed) var(--transition-timing);
}
.read-more-link:hover {
    color: var(--primary-color-darker);
    border-bottom-color: var(--primary-color-darker);
    text-decoration: none;
}

.mission-section,
.mission-section .section-title,
.collections-section,
.collections-section .section-title,
.return-policy-section,
.contact-page-content,
.contact-page-content .section-title,
.contact-page-content .title,
.contact-page-content label,
#company-history,
#company-history .section-title{
    color: #fff;
}


/* 12. RESPONSIVE DESIGN */
@media (max-width: 991px) { /* Tablet and below */
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1.15rem; }
    .section { padding: 3rem 0; }
    .title.is-2 { font-size: 2rem; }
}

@media (max-width: 768px) { /* Mobile */
    :root {
        --header-height: 60px; /* Smaller header on mobile */
    }
    body {
        padding-top: var(--header-height);
    }
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-section { padding: 5rem 0; }

    .column.is-one-third,
    .column.is-two-thirds,
    .column.is-half {
        width: 100%;
        flex: none;
    }
    .columns.is-mobile .column { /* If explicit mobile columns are desired to stay side-by-side */
        /* Default behavior will stack them. If you need them side-by-side, adjust flex properties here. */
        /* For example, for 2 columns on mobile: */
        /* width: 50%; */
    }
    .contact-form { padding: 1.5rem; }
    .contact-info { padding-left: 0; margin-top: 2rem; }

    /* Mobile Navigation */
    .menu-toggle {
        display: block;
        z-index: 1001; /* Above nav links */
    }
    .main-navigation .nav-links {
        display: none; /* Hidden by default */
        flex-direction: column;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: #fff; /* Solid background for mobile menu */
        box-shadow: var(--shadow-md);
        padding: 1rem 0;
        z-index: 1000; /* Ensure it's above other header content if any */
    }
    .main-navigation .nav-links.active { /* JS adds this class */
        display: flex;
    }
    .main-navigation .nav-links li {
        margin: 0;
        width: 100%;
    }
    .main-navigation .nav-links a {
        display: block;
        padding: 0.8rem 1.5rem;
        text-align: left;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
    }
    .main-navigation .nav-links a::after {
        display: none; /* Remove underline animation for mobile */
    }
    .main-navigation .nav-links li:last-child a {
        border-bottom: none;
    }
    .site-footer .columns > .column { /* Stack footer columns on mobile */
        margin-bottom: 2rem;
    }
    .site-footer .columns > .column:last-child {
        margin-bottom: 0;
    }

    .statistical-widgets .column {
        width: 33.333%; /* Ensure they stay in one row if .is-mobile is used */
    }
    .stat-number { font-size: 2rem; }
    .stat-label { font-size: 0.85rem; }

    .modal-content {
        padding: 1.5rem;
    }
}