/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;700&family=Montserrat:wght@300;400;500;700&display=swap');

/* --- CSS Variables --- */
:root {
    --primary-color: #445566; /* Muted Blue-Grey */
    --secondary-color: #F0DDC2; /* Pale Peach/Cream */
    --background-color: #1A2B2E; /* Dark Teal-Grey */
    --text-color: #E0E8EB; /* Off-White/Light Grey */
    --accent-color-dark: #3a4b5b; /* Darker primary for borders/shadows */
    --accent-color-light: #C7B49B; /* Lighter secondary for highlights */

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    --glass-blur-strength: 15px;
    --glass-bg-opacity: 0.15;
    --glass-border-opacity: 0.3;
    --glass-shadow-color: rgba(0, 0, 0, 0.2);
    --glass-panel-radius: 12px;
}

/* --- Base Styles & Reset --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden; /* Prevent horizontal scroll from parallax/animations */
    position: relative; /* For the animated background effect */
    background-image: var(--sunlight-gradient, radial-gradient(circle at 75% 25%, rgba(240, 221, 194, 0.1) 0%, transparent 50%)); /* Dynamic sunlight */
    transition: background-image 0.5s ease-in-out;
}

/* Special CSS Effect: Animated Gradient Mesh Background / Light Leak */
.site-background-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2; /* Below parallax layers */
    pointer-events: none;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(68, 85, 102, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(240, 221, 194, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(29, 43, 46, 0.05) 0%, transparent 70%);
    background-size: 200% 200%; /* Larger than viewport to allow movement */
    animation: gradientShift 45s ease infinite alternate;
    will-change: background-position;
}

@keyframes gradientShift {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

/* Parallax Layers */
.parallax-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.08; /* Subtle translucency */
    z-index: -1; /* Between site-background and content */
    pointer-events: none;
    transform: translateY(0); /* Base for JS parallax */
    will-change: transform; /* Optimize animation */
}

.parallax-layer--petal-1 {
    background-image: url('https://i.imgur.com/kS5x8rV.png'); /* Placeholder petal image */
    background-position: 10% 90%;
    background-size: 300px;
}
.parallax-layer--petal-2 {
    background-image: url('https://i.imgur.com/6Xw6Q1W.png'); /* Placeholder petal image */
    background-position: 90% 10%;
    background-size: 250px;
}
.parallax-layer--leaf-1 {
    background-image: url('https://i.imgur.com/vHqJ9qE.png'); /* Placeholder leaf image */
    background-position: 60% 40%;
    background-size: 400px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: 0.8em;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; font-weight: 700; text-align: center;}
h2 { font-size: 3rem; font-weight: 700; }
h3 { font-size: 2.5rem; font-weight: 400; }
h4 { font-size: 1.8rem; font-weight: 300; }
h5 { font-size: 1.4rem; font-weight: 300; }

p {
    margin-bottom: 1em;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
}
a:hover {
    color: var(--accent-color-light);
    text-shadow: 0 0 5px rgba(240, 221, 194, 0.4);
}

/* --- Reusable Components --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}

.container-narrow {
    max-width: 800px;
}

.button {
    display: inline-block;
    padding: 0.9em 2em;
    border: 1px solid var(--secondary-color);
    border-radius: 50px;
    background: transparent;
    color: var(--secondary-color);
    font-family: var(--font-body);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(5px); /* Subtle glass effect on button itself */
}

.button:hover {
    background: rgba(240, 221, 194, 0.15);
    border-color: var(--accent-color-light);
    color: var(--accent-color-light);
    box-shadow: 0 0 15px rgba(240, 221, 194, 0.2);
}

.button--small {
    padding: 0.7em 1.5em;
    font-size: 0.85rem;
}

/* Glassmorphism Panels */
.glass-panel {
    background-color: rgba(var(--primary-color-rgb-alpha, 68, 85, 102), var(--glass-bg-opacity));
    backdrop-filter: blur(var(--glass-blur-strength));
    border: 1px solid rgba(var(--primary-color-rgb-alpha, 68, 85, 102), var(--glass-border-opacity));
    border-radius: var(--glass-panel-radius);
    box-shadow: 0 8px 32px var(--glass-shadow-color);
    position: relative;
    overflow: hidden; /* To contain etching patterns */
}

.glass-panel-nested {
    background-color: rgba(var(--primary-color-rgb-alpha, 68, 85, 102), calc(var(--glass-bg-opacity) / 1.5));
    backdrop-filter: blur(calc(var(--glass-blur-strength) / 2));
    border: 1px solid rgba(var(--primary-color-rgb-alpha, 68, 85, 102), calc(var(--glass-border-opacity) / 1.5));
    border-radius: calc(var(--glass-panel-radius) * 0.7);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.etching-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M50 0L61.8 35.35L97.55 35.35L68.75 57.7L79.05 92.65L50 70.3L20.95 92.65L31.25 57.7L2.45 35.35L38.2 35.35L50 0Z" fill="none" stroke="%23F0DDC2" stroke-width="1" opacity="0.1"/></svg>'); /* Subtle flower/star pattern */
    background-size: 50px; /* Adjust size of etching pattern */
    opacity: 0.05;
    pointer-events: none;
    mix-blend-mode: soft-light;
    animation: rotatePattern 60s linear infinite;
}

@keyframes rotatePattern {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


/* Section Styling */
.section-padded {
    padding: 6rem 0;
    margin: 3rem 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 0.5em;
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(240, 221, 194, 0.3);
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-color);
    opacity: 0.8;
}

/* --- Header & Navigation --- */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    border-radius: 0 0 var(--glass-panel-radius) var(--glass-panel-radius);
    margin-bottom: 2rem;
    border-top: none;
    border-left: none;
    border-right: none;
    background-color: rgba(var(--primary-color-rgb-alpha, 68, 85, 102), calc(var(--glass-bg-opacity) * 1.5)); /* Slightly less transparent */
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.brand-name {
    font-size: 1.8rem;
    margin: 0;
    text-shadow: 0 0 8px rgba(240, 221, 194, 0.4);
}
.brand-name a {
    color: var(--secondary-color);
    text-shadow: 0 0 8px rgba(240, 221, 194, 0.4);
}
.brand-name a:hover {
    color: var(--accent-color-light);
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-list a {
    color: var(--text-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    padding-bottom: 5px;
}

.nav-list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease-in-out;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 20px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.nav-toggle.active .hamburger:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.active .hamburger:nth-child(2) { opacity: 0; }
.nav-toggle.active .hamburger:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }


/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden; /* For DoF and dew drops */
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: none; /* The actual hero background is handled by hero-background */
    box-shadow: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://picsum.photos/id/1084/1600/900') center center / cover no-repeat;
    z-index: -1;
    filter: blur(0px); /* Base for DoF effect */
    transition: filter 0.3s ease-out;
    will-change: filter;
}

.hero-content {
    max-width: 900px;
    padding: 3rem 2rem;
    z-index: 1;
    position: relative; /* For dew drops positioning */
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 0.2em;
    text-shadow: 0 0 15px rgba(240, 221, 194, 0.6);
    position: relative; /* For dew drops */
    display: inline-block; /* To contain dew drops */
    padding-right: 15px;
}

.hero-tagline {
    font-size: 1.7rem;
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 2rem;
    position: relative; /* For dew drops */
    display: inline-block; /* To contain dew drops */
    padding-right: 10px;
}

/* Micro-animations of dew drops */
.dew-drop {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    opacity: 0;
    transform: scale(0);
    animation: dewDropForm 5s ease-out infinite;
    pointer-events: none;
}

.hero-title .dew-drop {
    top: 25%;
    right: 0%;
    animation-delay: 1.5s;
}
.hero-tagline .dew-drop {
    bottom: 0;
    right: -10px;
    animation-delay: 3s;
    width: 5px;
    height: 5px;
}

@keyframes dewDropForm {
    0% { opacity: 0; transform: scale(0) translateY(10px); }
    10% { opacity: 1; transform: scale(1) translateY(0); }
    80% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0.5) translateY(-5px); }
}


/* --- The Bloom Archives Section --- */
.bloom-archives {
    text-align: center;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 3rem;
    padding: 1.2rem;
    border-radius: var(--glass-panel-radius);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.filter-button {
    font-size: 0.8rem;
    padding: 0.6em 1.2em;
    border-radius: 20px;
    border: 1px solid rgba(var(--secondary-color-rgb-alpha, 240, 221, 194), 0.5);
    color: var(--text-color);
    background-color: transparent;
    transition: all 0.2s ease;
    cursor: pointer;
    backdrop-filter: blur(3px);
}

.filter-button:hover {
    background-color: rgba(var(--secondary-color-rgb-alpha, 240, 221, 194), 0.1);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    box-shadow: 0 0 8px rgba(240, 221, 194, 0.3);
}

.filter-button.active {
    background-color: rgba(var(--secondary-color-rgb-alpha, 240, 221, 194), 0.25);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    font-weight: 500;
    box-shadow: 0 0 10px rgba(240, 221, 194, 0.5);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--glass-panel-radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(240, 221, 194, 0.3);
}

.bloom-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover .bloom-image {
    transform: scale(1.05);
}

.image-caption {
    padding: 1rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--secondary-color);
    opacity: 0.9;
}

/* --- Behind the Lens Section --- */
.behind-the-lens .content-block {
    text-align: justify;
    font-size: 1.05rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: rgba(var(--primary-color-rgb-alpha, 68, 85, 102), calc(var(--glass-bg-opacity) / 1.5));
    backdrop-filter: blur(calc(var(--glass-blur-strength) / 2));
    border-radius: var(--glass-panel-radius);
}
.behind-the-lens p {
    margin-bottom: 1.2em;
}

/* --- Commissions & Collaborations Section --- */
.commissions {
    text-align: center;
}

.commission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.commission-card {
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.commission-card h4 {
    margin-bottom: 0.8em;
    color: var(--secondary-color);
}
.commission-card p {
    margin-bottom: 1.5em;
    flex-grow: 1;
}

/* --- Fine Art Prints & Editions Section --- */
.prints {
    text-align: center;
}

.prints-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.print-item {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.print-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: calc(var(--glass-panel-radius) * 0.5);
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.print-details h5 {
    margin-bottom: 0.3em;
    color: var(--secondary-color);
    font-size: 1.3rem;
}
.print-details p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.8em;
}
.print-details .price {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-color-light);
    margin-bottom: 1.2em;
}

.print-cta {
    margin-top: 4rem;
    padding: 2rem;
    background-color: rgba(var(--primary-color-rgb-alpha, 68, 85, 102), calc(var(--glass-bg-opacity) / 1.5));
    backdrop-filter: blur(calc(var(--glass-blur-strength) / 2));
    border-radius: var(--glass-panel-radius);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.print-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5em;
    font-style: italic;
    opacity: 0.9;
}

/* --- Seasonal Inspirations Section --- */
.inspirations {
    text-align: center;
}

.seasonal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.season-card {
    padding-bottom: 1.5rem;
}

.season-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: calc(var(--glass-panel-radius) * 0.5);
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.season-content h4 {
    margin-bottom: 0.5em;
    color: var(--secondary-color);
}
.season-content p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 1.5em;
}


/* --- Enquire & Connect Section --- */
.enquire-connect {
    text-align: center;
}

.contact-form {
    padding: 2.5rem;
    text-align: left;
    margin-bottom: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 0.8em 1.2em;
    border: 1px solid rgba(var(--primary-color-rgb-alpha, 68, 85, 102), 0.5);
    border-radius: 8px;
    background-color: rgba(var(--background-color-rgb-alpha, 26, 43, 46), 0.6);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1rem;
    backdrop-filter: blur(5px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(var(--text-color-rgb-alpha, 224, 232, 235), 0.5);
    font-style: italic;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(240, 221, 194, 0.4);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .button {
    width: auto;
    margin-top: 1rem;
    padding: 1em 3em;
    font-size: 1rem;
}

.social-links {
    padding: 2rem;
    text-align: center;
}
.social-links p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
    opacity: 0.9;
}
.social-icon {
    display: inline-block;
    padding: 0.8em 1.5em;
    margin: 0 0.5rem;
    border: 1px solid var(--secondary-color);
    border-radius: 50px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}
.social-icon:hover {
    background-color: rgba(var(--secondary-color-rgb-alpha, 240, 221, 194), 0.15);
    box-shadow: 0 0 15px rgba(240, 221, 194, 0.3);
}

/* --- Footer --- */
.site-footer {
    margin-top: auto;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
    border-radius: var(--glass-panel-radius) var(--glass-panel-radius) 0 0;
    border-bottom: none;
    border-left: none;
    border-right: none;
}
.site-footer .container {
    padding-top: 1rem;
    padding-bottom: 1rem;
}


/* --- Image Zoom Modal --- */
.image-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 2000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: hidden; /* Enable scroll if needed, but we'll pan */
    background-color: rgba(0, 0, 0, 0.85); /* Black w/ opacity */
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    position: relative;
    padding: 2rem;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.close-button {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-button:hover,
.close-button:focus {
    color: var(--accent-color-light);
}

.modal-image {
    max-width: 100%;
    max-height: 70vh; /* Adjust as needed */
    object-fit: contain;
    transform: scale(1);
    transform-origin: center center;
    transition: transform 0.05s linear; /* Smooth pan/zoom */
    cursor: grab;
    will-change: transform, transform-origin;
}
.modal-image.panning {
    cursor: grabbing;
}

.modal-caption {
    margin-top: 1rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--secondary-color);
    text-align: center;
}

.modal-instructions {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    opacity: 0.7;
    font-style: italic;
}


/* --- Bloom Cursor Effect (JS controlled) --- */
.bloom-cursor-effect {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    background-color: rgba(var(--secondary-color-rgb-alpha, 240, 221, 194), 0.4);
    box-shadow: 0 0 10px rgba(var(--secondary-color-rgb-alpha, 240, 221, 194), 0.6);
    animation: bloomEffect 0.6s ease-out forwards;
    transform: scale(0);
    opacity: 0;
    z-index: 9999;
}

@keyframes bloomEffect {
    0% { transform: scale(0); opacity: 1; }
    50% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}


/* --- Responsive Design --- */
@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 2rem; }
    h4 { font-size: 1.5rem; }

    .hero-title { font-size: 4rem; }
    .hero-tagline { font-size: 1.4rem; }

    .site-header .container {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    .brand-name {
        width: 100%;
        margin-bottom: 1rem;
    }
    .nav-list {
        gap: 1.5rem;
        justify-content: center;
        width: 100%;
    }
    .gallery-filters {
        gap: 0.6rem;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .section-padded {
        padding: 4rem 0;
        margin: 2rem 0.5rem;
    }
    .container {
        padding: 1rem;
    }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.8rem; }
    h4 { font-size: 1.3rem; }

    .hero-title { font-size: 3rem; }
    .hero-tagline { font-size: 1.2rem; }
    .hero-section {
        height: 70vh;
    }

    .nav-toggle {
        display: flex; /* Show hamburger on mobile */
    }

    .main-nav {
        order: 2; /* Move nav to bottom on smaller screens */
        width: 100%;
        margin-top: 1rem;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease-in-out;
        background-color: rgba(var(--primary-color-rgb-alpha, 68, 85, 102), 0.8);
        border-radius: var(--glass-panel-radius);
        padding: 0;
        margin-top: 1rem;
    }
    .nav-list.active {
        height: auto; /* Calculate dynamically with JS or max-height */
        max-height: 300px; /* Example max-height */
        padding: 1.5rem 0;
        border: 1px solid rgba(var(--primary-color-rgb-alpha, 68, 85, 102), var(--glass-border-opacity));
    }
    .nav-list li {
        text-align: center;
        margin-bottom: 0.8rem;
    }
    .nav-list a {
        padding: 0.5rem 0;
        display: block;
    }

    .gallery-filters {
        padding: 0.8rem;
    }
    .filter-button {
        font-size: 0.75rem;
        padding: 0.5em 1em;
    }

    .commission-grid, .prints-grid, .seasonal-grid {
        grid-template-columns: 1fr;
    }
    .print-item {
        padding: 1rem;
    }
    .print-image {
        height: 200px;
    }
    .season-image {
        height: 180px;
    }
    .contact-form, .social-links {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.5rem; }
    .hero-tagline { font-size: 1rem; }
    .button {
        padding: 0.7em 1.5em;
        font-size: 0.8rem;
    }
    .section-title { font-size: 2rem; }
    .section-intro { font-size: 1rem; }
    .brand-name { font-size: 1.5rem; }
    .gallery-filters {
        flex-direction: column;
        align-items: stretch;
    }
    .filter-button {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    .social-icon {
        margin: 0.5rem 0.2rem;
    }
}

/* Ensure RGB alpha values for JS use */
body {
    --primary-color-rgb-alpha: 68, 85, 102;
    --secondary-color-rgb-alpha: 240, 221, 194;
    --background-color-rgb-alpha: 26, 43, 46;
    --text-color-rgb-alpha: 224, 232, 235;
}