/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Black & White Color Palette - Elegant & Timeless */
    --primary-black: #000000;         /* Pure black - main brand color */
    --deep-black: #1a1a1a;           /* Deep black - accents */
    --charcoal: #333333;             /* Charcoal - highlights */
    --dark-gray: #4a4a4a;            /* Dark gray - backgrounds */
    --medium-gray: #666666;          /* Medium gray - subtle backgrounds */
    --light-gray: #999999;           /* Light gray - text and borders */
    --silver: #cccccc;               /* Silver - glow effects */
    --off-white: #f8f8f8;           /* Off white - shadow effects */
    --white: #FFFFFF;                /* Pure white */
    --black: #000000;                /* Pure black text */
    --light-background: #fafafa;     /* Clean light background */
    --subtle-gray: #e5e5e5;          /* Subtle text */
    --border-color: rgba(0, 0, 0, 0.1); /* Subtle borders */
    --neon-glow: 0 0 5px rgba(0, 0, 0, 0.3), 0 0 10px rgba(0, 0, 0, 0.2), 0 0 15px rgba(0, 0, 0, 0.1); /* Neon glow effect */
    --gradient-primary: linear-gradient(135deg, #000000 0%, #333333 50%, #666666 100%);
    --gradient-secondary: linear-gradient(135deg, #1a1a1a 0%, #000000 50%, #333333 100%);
    --gradient-soft: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    
    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --smooth-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --slow-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
}

/* Default background for most pages */
body:not(.account-page) {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 50%, #f0f0f0 100%);
    background-attachment: fixed;
}

/* Override background for pages with hero images */
body:not(.account-page):has(.hero) {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 50%, #f0f0f0 100%);
    background-attachment: fixed;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Floating Bubbles */
.floating-bubbles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite linear;
}

.bubble-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.bubble-2 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2));
    left: 70%;
    animation-delay: 5s;
    animation-duration: 30s;
}

.bubble-3 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.1));
    left: 30%;
    animation-delay: 10s;
    animation-duration: 20s;
}

.bubble-4 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-purple), var(--deep-purple));
    left: 85%;
    animation-delay: 15s;
    animation-duration: 35s;
}

.bubble-5 {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05));
    left: 50%;
    animation-delay: 8s;
    animation-duration: 28s;
}

.bubble-6 {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--off-white), var(--charcoal));
    left: 20%;
    animation-delay: 12s;
    animation-duration: 22s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--smooth-transition);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    text-decoration: none; 
}

.nav-logo::before { 
    content: ''; 
    width: 36px; 
    height: 36px; 
    border-radius: 8px; 
    background: url('tt-logo.png') center/cover no-repeat; 
    display: inline-block; 
}

.nav-logo:has(.logo-img)::before { 
    content: none; 
}

.logo-img { 
    width: 36px; 
    height: 36px; 
    border-radius: 8px; 
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    color: #000000;
    margin: 0;
    letter-spacing: 1px;
    transition: var(--smooth-transition);
    text-decoration: none;
}

.logo-text:hover {
    color: #333333;
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #000000;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    transition: var(--smooth-transition);
    text-transform: uppercase;
    display: inline-block;
}

.nav-link:hover {
    color: #333333;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #000000;
    transition: var(--smooth-transition);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 2px;
    background: #000000;
    margin: 3px 0;
    transition: var(--smooth-transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('hq720.jpg') center/cover no-repeat,
                linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0.4) 100%);
    z-index: 1;
}

.hero-content-box {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 0 60px rgba(255, 255, 255, 0.05);
    margin: 0 20px;
    animation: heroGlow 3s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    from {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 0 60px rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.3);
    }
    to {
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15), inset 0 0 80px rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
    }
}

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

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    color: var(--primary-black);
    margin-bottom: 20px;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out;
    text-shadow: var(--neon-glow);
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--charcoal);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-black);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--smooth-transition);
    animation: fadeInUp 1s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
    box-shadow: var(--neon-glow);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--smooth-transition);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 0, 0, 0.3), 0 0 25px rgba(0, 0, 0, 0.2);
    background: var(--charcoal);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--primary-black);
    position: relative;
    animation: bounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--charcoal);
    border-bottom: 2px solid var(--charcoal);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInNav {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Section Titles */
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    color: #000000;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

/* Page Section Styles */
.page-section {
    padding: 120px 0 80px;
    min-height: 100vh;
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: transparent;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    text-align: center;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 0 60px rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    transition: var(--smooth-transition);
}

.about-text::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.3), 
        rgba(255, 255, 255, 0.2), 
        rgba(255, 255, 255, 0.3));
    border-radius: 28px;
    z-index: -1;
    opacity: 0.5;
}

.about-text:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 0 80px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 30px;
    font-weight: 300;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    justify-content: center;
}

.stat {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--smooth-transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), inset 0 0 40px rgba(255, 255, 255, 0.05);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15), inset 0 0 60px rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.5);
}

.stat h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 10px;
}

.stat p {
    color: #333333;
    font-size: 0.9rem;
    letter-spacing: 1px;
}



/* Collections Section */
.collections {
    padding: 60px 0;
    background: transparent;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1200px) {
    .collections-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1000px) {
    .collections-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 800px) {
    .collections-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

.collection-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--smooth-transition);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 0 40px rgba(255, 255, 255, 0.05);
}

.collection-image {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--smooth-transition);
    background: rgba(0, 0, 0, 0.05);
}

.collection-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1rem;
    font-weight: 400;
    color: #000000;
    text-align: center;
    margin-bottom: 12px;
    margin-top: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    transition: var(--smooth-transition);
}

.collection-title::after {
    content: none;
}

.collection-item:hover {
    transform: translateY(-8px);
}

.collection-item:hover .collection-title {
    color: #333333;
    letter-spacing: 3px;
}

/* Ensure collection items have proper spacing */
.collection-item {
    margin-bottom: 20px;
}

.collection-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), inset 0 0 60px rgba(255, 255, 255, 0.1);
}

.collection-item:hover .collection-image {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--smooth-transition);
}

.collection-item:hover .collection-image img {
    transform: scale(1.05);
}

.collection-image .image-placeholder {
    height: 100%;
    background: linear-gradient(135deg, var(--off-white), var(--charcoal));
    transition: var(--smooth-transition);
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    opacity: 0;
    transition: var(--smooth-transition);
    padding: 20px;
    backdrop-filter: blur(5px);
}

.collection-item:hover .collection-overlay {
    opacity: 1;
}

.collection-overlay h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 400;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6), 0 0 15px rgba(255, 255, 255, 0.4);
}

.collection-overlay p {
    font-size: 1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.collection-btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--smooth-transition);
    border-radius: 25px;
}

.collection-btn:hover {
    background: var(--white);
    color: var(--charcoal);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 40px;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 8px;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.2), 0 0 8px rgba(0, 0, 0, 0.1);
}

.contact-item p {
    color: var(--charcoal);
    line-height: 1.6;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--smooth-transition);
    background: rgba(255, 255, 255, 0.9);
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-black);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.newsletter {
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--neon-glow);
}

.newsletter h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--charcoal);
    margin-bottom: 15px;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.3), 0 0 12px rgba(0, 0, 0, 0.2);
}

.newsletter p {
    color: var(--charcoal);
    margin-bottom: 30px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    transition: var(--smooth-transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--charcoal);
    box-shadow: var(--neon-glow);
}

.newsletter-form button {
    padding: 15px 25px;
    background: var(--primary-black);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--smooth-transition);
    letter-spacing: 0.5px;
    box-shadow: var(--neon-glow);
}

.newsletter-form button:hover {
    background: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4), 0 0 25px rgba(0, 0, 0, 0.3);
}

/* Account Auth Layout */
.account-container #auth-section {
    /* Center vertically within the viewport minus header/nav space */
    min-height: calc(100vh - 240px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.account-tabs {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Make the auth wrapper wide and centered */
.auth-forms {
    width: 100%;
    max-width: 960px; /* almost page width on desktop */
    margin: 0 auto;
    padding: 10px;
}

/* Make individual form fill available width */
.auth-form {
    width: 100%;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--neon-glow);
}

/* Tighten spacing for header area on account page to give more space to forms */
.account-header {
    margin-top: 110px; /* push below fixed navbar */
    margin-bottom: 20px;
    text-align: center;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .account-container #auth-section { min-height: calc(100vh - 200px); }
    .auth-form { padding: 20px; border-radius: 12px; }
    .auth-forms { max-width: 100%; padding: 0 12px; }
}

/* Account Auth Layout Overrides: widen and center more */
.account-container .container { max-width: 1400px; }
.account-tabs .tab-buttons { display: flex; justify-content: center; }
.auth-forms { max-width: min(1140px, 92vw); }
.auth-form { padding: clamp(28px, 3vw, 48px); }

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: var(--white);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 400;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3), 0 0 15px rgba(255, 255, 255, 0.2);
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 500;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.3), 0 0 10px rgba(255, 255, 255, 0.1);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--smooth-transition);
}

.footer-column a:hover {
    opacity: 1;
    color: var(--white);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4), 0 0 12px rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    text-align: center;
    opacity: 0.8;
}

/* Responsive Design */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-menu {
        gap: 25px;
    }
    
    .hero-content-box {
        padding: 50px 30px;
        margin: 0 15px;
    }
    
    .about-stats {
        gap: 25px;
    }
    
    .contact-content {
        gap: 60px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    /* Navigation */
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: min(320px, 85vw);
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid var(--border-color);
        text-align: left;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        padding: 100px 20px 40px;
        gap: 8px;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item {
        margin: 0;
        opacity: 0;
        transform: translateX(20px);
        animation: slideInNav 0.3s ease forwards;
    }
    
    .nav-menu.active .nav-item:nth-child(1) { animation-delay: 0.05s; }
    .nav-menu.active .nav-item:nth-child(2) { animation-delay: 0.1s; }
    .nav-menu.active .nav-item:nth-child(3) { animation-delay: 0.15s; }
    .nav-menu.active .nav-item:nth-child(4) { animation-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(5) { animation-delay: 0.25s; }
    .nav-menu.active .nav-item:nth-child(6) { animation-delay: 0.3s; }
    .nav-menu.active .nav-item:nth-child(7) { animation-delay: 0.35s; }
    .nav-menu.active .nav-item:nth-child(8) { animation-delay: 0.4s; }
    
    .nav-link {
        display: flex;
        align-items: center;
        padding: 16px 20px;
        margin: 0;
        border-radius: 12px;
        background: rgba(0, 0, 0, 0.02);
        border: 1px solid var(--border-color);
        transition: all 0.3s ease;
        font-weight: 600;
        font-size: 0.95rem;
        min-height: 44px; /* Minimum touch target size */
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(0, 0, 0, 0.05);
        border-color: var(--charcoal);
        transform: translateX(5px);
        color: var(--primary-black);
    }
    
    /* Mobile nav overlay */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: -100vw;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(2px);
        transition: left 0.4s ease;
        z-index: -1;
    }
    
    .nav-menu.active::before {
        left: 0;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Hero Section */
    .hero {
        background-attachment: scroll; /* Better performance on mobile */
    }
    
    .hero-content-box {
        padding: 40px 25px;
        margin: 0 15px;
    }
    
    /* About Section */
    .about-content {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .about-text {
        padding: 35px 25px;
        border-radius: 20px;
    }
    
    .about-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat {
        flex: 1 1 calc(50% - 10px);
        min-width: 140px;
    }
    
    /* Collections */
    .collection-title {
        font-size: 0.95rem;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }
    
    .collection-image {
        height: 180px;
    }
    
    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-container {
        padding: 30px 25px;
    }
    
    /* Newsletter */
    .newsletter {
        padding: 30px 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Floating bubbles - reduce on mobile for performance */
    .bubble {
        opacity: 0.05;
    }
}

/* Small phones */
@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
        --container-padding: 0 15px;
    }
    
    /* Navigation */
    .navbar {
        padding: 12px 0;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-img {
        width: 30px;
        height: 30px;
    }
    
    .nav-logo::before {
        width: 30px;
        height: 30px;
    }
    
    /* Hero Section */
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-content-box {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    /* About Section */
    .about-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat {
        width: 100%;
    }
    
    .about-text {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .about-text::before {
        border-radius: 18px;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    /* Collections */
    .collections {
        padding: 40px 0;
    }
    
    .collection-title {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .collection-image {
        height: 160px;
        border-radius: 12px;
    }
    
    .collection-overlay h3 {
        font-size: 1.4rem;
    }
    
    .collection-overlay p {
        font-size: 0.9rem;
    }
    
    .collection-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    
    /* Contact Section */
    .contact-description {
        font-size: 1rem;
    }
    
    .contact-form-container {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    /* Newsletter */
    .newsletter {
        padding: 25px 15px;
    }
    
    .newsletter h3 {
        font-size: 1.5rem;
    }
    
    .newsletter-form input {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .newsletter-form button {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    /* Footer */
    .footer {
        padding: 15px 0;
        font-size: 0.9rem;
    }
    
    /* Disable complex animations on small devices */
    .bubble {
        display: none;
    }
    
    .floating-bubbles {
        display: none;
    }
}

/* Very small phones */
@media (max-width: 360px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .nav-menu {
        width: 90vw;
    }
    
    .hero-content-box {
        padding: 25px 15px;
    }
    
    .about-text {
        padding: 20px 15px;
    }
    
    .collection-image {
        height: 140px;
    }
    
    .stat h3 {
        font-size: 1.3rem;
    }
    
    .stat p {
        font-size: 0.85rem;
    }
}

/* Additional Glowing Effects */
.collection-item {
    position: relative;
}

.collection-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3));
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    transition: var(--smooth-transition);
}

.collection-item:hover::before {
    opacity: 0.7;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    }
    to {
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    }
}

/* Disable glow animation on mobile for performance */
@media (max-width: 768px) {
    .collection-item:hover::before {
        animation: none;
    }
}

/* Enhanced button hover effects */
@media (hover: hover) and (pointer: fine) {
    .cta-button:hover::before {
        animation: shimmer 1.5s ease-in-out infinite;
    }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Scroll-to-top button hover effect */
.scroll-to-top:hover {
    background: var(--charcoal) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 0, 0, 0.4) !important;
}

/* Mobile-specific scroll-to-top button */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px !important;
        right: 20px !important;
        width: 45px !important;
        height: 45px !important;
        font-size: 18px !important;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .collection-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }
    
    .about-text {
        padding: 30px 25px;
        border-radius: 20px;
    }
    
    .about-text::before {
        border-radius: 23px;
    }
}