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

/* London Collection Specific Styles */

/* London Hero Section */
.london-hero {
    /* background: 
        radial-gradient(circle at 20% 80%, rgba(169, 169, 169, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(47, 79, 79, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, var(--charcoal) 0%, var(--dark-red) 50%, var(--dark-bg) 100%); */
    background-image: 
        linear-gradient(rgba(44, 44, 44, 0.8), rgba(105, 105, 105, 0.6)),
        url('../../images/london-collection.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.london-overlay {
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><defs><pattern id="london-pattern" x="0" y="0" width="60" height="60" patternUnits="userSpaceOnUse"><rect x="15" y="15" width="30" height="30" fill="none" stroke="rgba(169,169,169,0.1)" stroke-width="1"/><circle cx="30" cy="30" r="8" fill="none" stroke="rgba(169,169,169,0.08)" stroke-width="0.5"/></pattern></defs><rect width="120" height="120" fill="url(%23london-pattern)"/></svg>'),
        linear-gradient(45deg, transparent 40%, rgba(169,169,169,0.08) 50%, transparent 60%);
    opacity: 0.9;
}

.status-badge.coming-soon {
    background: linear-gradient(45deg, var(--charcoal), #696969);
    color: var(--cream);
    border: 2px solid #A9A9A9;
    animation: none;
    box-shadow: 0 0 15px rgba(169, 169, 169, 0.3);
}

.preview-bid {
    color: #A9A9A9;
    font-weight: 600;
}

/* London Items Grid Styling */
.london-hero .collection-items {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-red) 100%);
}

.reign-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(169, 169, 169, 0.9);
    color: var(--dark-bg);
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid var(--charcoal);
}

.interest-btn {
    background: var(--charcoal);
    color: #A9A9A9;
    border: 2px solid #A9A9A9;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.interest-btn:hover {
    background: #A9A9A9;
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.preview-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(169, 169, 169, 0.3);
}

.preview-info .starting-bid {
    font-size: 1.1rem;
    font-weight: 600;
    color: #A9A9A9;
}

.interest-count {
    font-size: 0.9rem;
    color: var(--cream);
    opacity: 0.8;
}

/* London Inspiration Section */
.london-inspiration {
    background: var(--charcoal);
    position: relative;
}

.london-inspiration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(169, 169, 169, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(47, 79, 79, 0.1) 0%, transparent 50%);
    opacity: 0.8;
}

/* London-specific item card hover effects */
.london-hero .item-card:hover {
    border-color: #A9A9A9;
    box-shadow: 0 20px 50px rgba(169, 169, 169, 0.2);
}

/* Responsive adjustments for London collection */
@media (max-width: 768px) {
    .reign-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
    }
    
    .preview-info {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .interest-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

/* Paris Collection Page Styles */

/* Collection Hero Section */
.collection-hero {
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(220, 20, 60, 0.4) 0%, transparent 50%),
        linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-red) 50%, var(--dark-red) 100%);
    margin-top: 80px;
    overflow: hidden;
}

.collection-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="paris-pattern" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M20,5 Q30,15 20,25 Q10,15 20,5 M5,20 Q15,30 5,40 Q-5,30 5,20 M35,20 Q45,30 35,40 Q25,30 35,20" fill="none" stroke="rgba(255,215,0,0.15)" stroke-width="0.8"/></pattern></defs><rect width="100" height="100" fill="url(%23paris-pattern)"/></svg>'),
        linear-gradient(45deg, transparent 30%, rgba(255,215,0,0.1) 50%, transparent 70%);
    opacity: 0.9;
}

.collection-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.breadcrumb {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: var(--cream);
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--gold);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb span {
    margin: 0 0.5rem;
}

.collection-hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--gold), var(--warm-gold), var(--cream));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.collection-hero-subtitle {
    font-size: 2rem;
    color: var(--cream);
    font-style: italic;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.collection-description {
    max-width: 800px;
    margin-bottom: 3rem;
}

.collection-description p {
    font-size: 1.3rem;
    color: var(--cream);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.auction-status {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.status-badge {
    background: var(--accent-red);
    color: var(--cream);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--gold);
    animation: pulse-glow 2s ease-in-out infinite;
}

.status-badge.live {
    background: linear-gradient(45deg, var(--accent-red), #FF4500);
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.5);
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(220, 20, 60, 0.5); }
    50% { box-shadow: 0 0 30px rgba(220, 20, 60, 0.8); }
}

.auction-info {
    display: flex;
    gap: 2rem;
    font-size: 1.1rem;
}

.current-bid {
    color: var(--gold);
    font-weight: 600;
}

.time-remaining {
    color: var(--cream);
    font-weight: 500;
}

/* Collection Items Section */
.collection-items {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--charcoal) 100%);
    position: relative;
}

.collection-items::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><defs><pattern id="items-pattern" x="0" y="0" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="2" fill="rgba(255,215,0,0.1)"/><circle cx="10" cy="10" r="1" fill="rgba(255,215,0,0.05)"/><circle cx="70" cy="70" r="1" fill="rgba(255,215,0,0.05)"/></pattern></defs><rect width="80" height="80" fill="url(%23items-pattern)"/></svg>');
    opacity: 0.6;
}

.items-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.items-header h2 {
    font-size: 3rem;
    color: var(--gold);
    font-weight: 900;
    letter-spacing: 1px;
}

.filter-controls {
    display: flex;
    gap: 1rem;
}

.filter-btn {
    background: transparent;
    color: var(--cream);
    border: 2px solid var(--gold);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.item-card {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.8), rgba(44, 44, 44, 0.8));
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    position: relative;
}

.item-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
    border-color: var(--gold);
}

.item-image {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.item-card:hover .item-image img {
    transform: scale(1.1);
}

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.quick-view-btn,
.bid-btn {
    background: var(--gold);
    color: var(--dark-bg);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.quick-view-btn:hover,
.bid-btn:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

.bid-btn {
    background: var(--accent-red);
    color: var(--cream);
    border: 2px solid var(--gold);
}

.bid-btn:hover {
    background: var(--gold);
    color: var(--dark-bg);
}

.item-number {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1rem;
    border: 1px solid var(--gold);
}

.arrondissement-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 215, 0, 0.9);
    color: var(--dark-bg);
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.item-details {
    padding: 2rem;
}

.item-details h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.item-description {
    font-size: 1rem;
    color: var(--cream);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.item-provenance {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--gold);
    opacity: 0.8;
}

.bid-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
}

.bid-info .current-bid {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
}

.bid-count {
    font-size: 0.9rem;
    color: var(--cream);
    opacity: 0.8;
}

/* Collection Inspiration Section */
.collection-inspiration {
    padding: 6rem 0;
    background: var(--dark-bg);
    position: relative;
}

.collection-inspiration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(220, 20, 60, 0.1) 0%, transparent 50%);
    opacity: 0.8;
}

.inspiration-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.inspiration-content h2 {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 3rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.inspiration-text p {
    font-size: 1.4rem;
    color: var(--cream);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2rem;
    font-weight: 300;
}

.inspiration-text cite {
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 500;
    font-style: normal;
}

/* Responsive Design for Collection Page */
@media (max-width: 1200px) {
    .collection-hero-title {
        font-size: 3.5rem;
    }
    
    .items-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .items-header {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .filter-controls {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 968px) {
    .collection-hero {
        height: 60vh;
        padding: 0 1rem;
    }
    
    .collection-hero-title {
        font-size: 2.8rem;
    }
    
    .collection-hero-subtitle {
        font-size: 1.6rem;
    }
    
    .collection-description p {
        font-size: 1.1rem;
    }
    
    .auction-status {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .auction-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .items-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .inspiration-content h2 {
        font-size: 2.2rem;
    }
    
    .inspiration-text p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .collection-hero-content {
        padding: 0 1rem;
    }
    
    .collection-hero-title {
        font-size: 2.2rem;
    }
    
    .collection-hero-subtitle {
        font-size: 1.3rem;
    }
    
    .items-header h2 {
        font-size: 2.2rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .items-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .item-details {
        padding: 1.5rem;
    }
    
    .item-details h3 {
        font-size: 1.5rem;
    }
    
    .item-overlay {
        opacity: 1;
        background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.8) 100%);
    }
    
    .quick-view-btn,
    .bid-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .collection-hero {
        height: 50vh;
    }
    
    .collection-hero-title {
        font-size: 1.8rem;
    }
    
    .collection-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .collection-description p {
        font-size: 1rem;
    }
    
    .items-header h2 {
        font-size: 1.8rem;
    }
    
    .filter-controls {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .inspiration-content h2 {
        font-size: 1.8rem;
    }
    
    .inspiration-text p {
        font-size: 1rem;
    }
}

:root {
    --primary-red: #8B0000;
    --secondary-red: #A52A2A;
    --accent-red: #DC143C;
    --dark-red: #660000;
    --gold: #FFD700;
    --warm-gold: #B8860B;
    --cream: #FFF8DC;
    --dark-bg: #1a0000;
    --charcoal: #2C2C2C;
    --white: #FFFFFF;
    --border-gold: #DAA520;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-red) 100%);
    color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--gold);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.by-line {
    font-size: 0.9rem;
    color: var(--cream);
    font-style: italic;
    display: block;
    margin-top: -8px;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.cta-button {
    background: linear-gradient(45deg, var(--primary-red), var(--accent-red));
    padding: 0.8rem 1.5rem !important;
    border-radius: 30px;
    border: 2px solid var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: linear-gradient(45deg, var(--accent-red), var(--gold));
    color: var(--dark-bg) !important;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(circle at 20% 50%, rgba(220, 20, 60, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-red) 50%, var(--dark-red) 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="damask" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M25,5 Q35,15 25,25 Q15,15 25,5 M25,30 Q35,40 25,50 Q15,40 25,30" fill="none" stroke="rgba(255,215,0,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23damask)"/></svg>'),
        linear-gradient(45deg, transparent 30%, rgba(255,215,0,0.05) 50%, transparent 70%);
    opacity: 0.8;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--gold), var(--warm-gold), var(--cream));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: var(--cream);
    font-style: italic;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-button, .secondary-button {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.primary-button {
    background: linear-gradient(45deg, var(--accent-red), var(--primary-red));
    color: var(--cream);
    border: 2px solid var(--gold);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
}

.secondary-button {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.primary-button:hover {
    background: linear-gradient(45deg, var(--gold), var(--warm-gold));
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
}

.secondary-button:hover {
    background: var(--gold);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.ornament {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 3px solid var(--gold);
    border-radius: 50%;
    opacity: 0.3;
}

.ornament-1 {
    top: 10%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.ornament-2 {
    bottom: 10%;
    left: 10%;
    animation: float 8s ease-in-out infinite reverse;
    border-style: dashed;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Collections Section */
.collections {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--charcoal) 100%);
    position: relative;
}

.collections::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="baroque" x="0" y="0" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M30,10 Q40,20 30,30 Q20,20 30,10 M10,30 Q20,40 10,50 Q0,40 10,30 M50,30 Q60,40 50,50 Q40,40 50,30" fill="none" stroke="rgba(255,215,0,0.08)" stroke-width="1"/></pattern></defs><rect width="60" height="60" fill="url(%23baroque)"/></svg>');
    opacity: 0.6;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.section-subtitle {
    font-size: 1.4rem;
    color: var(--cream);
    font-style: italic;
    font-weight: 300;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.collection-card {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.9), rgba(44, 44, 44, 0.9));
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    position: relative;
}

.collection-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.3);
}

.collection-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-image: linear-gradient(45deg, var(--primary-red), var(--accent-red));
}

.collection-card[data-collection="paris"] .collection-image {
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.4) 0%, transparent 50%),
        linear-gradient(135deg, var(--primary-red), var(--dark-red));
}

.collection-card[data-collection="london"] .collection-image {
    background-image: 
        radial-gradient(circle at 70% 30%, rgba(169, 169, 169, 0.4) 0%, transparent 50%),
        linear-gradient(135deg, var(--charcoal), var(--dark-red));
}

.collection-card[data-collection="riviera"] .collection-image {
    background-image: 
        radial-gradient(circle at 50% 80%, rgba(0, 191, 255, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, var(--accent-red), var(--primary-red));
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
}

.collection-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
}

.collection-content {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

.collection-content h3 {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.collection-content p {
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.collection-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: var(--gold);
    font-weight: 500;
}

.collection-button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--accent-red), var(--primary-red));
    color: var(--cream);
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.collection-button:hover {
    background: linear-gradient(45deg, var(--gold), var(--warm-gold));
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* How It Works Section */
.how-it-works {
    padding: 8rem 0;
    background: var(--dark-bg);
    position: relative;
}

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

.step {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.3), rgba(44, 44, 44, 0.3));
    border-radius: 20px;
    border: 2px solid var(--gold);
    position: relative;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.step h3 {
    font-size: 2rem;
    color: var(--cream);
    margin-bottom: 1rem;
    font-weight: 700;
}

.step p {
    font-size: 1.2rem;
    color: var(--cream);
    opacity: 0.9;
}

/* Exclusive Circle Section */
.exclusive-circle {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    position: relative;
}

.exclusive-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    opacity: 0.8;
}

.exclusive-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.exclusive-text h2 {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.exclusive-description {
    font-size: 1.3rem;
    color: var(--cream);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 300;
}

.exclusive-benefits {
    list-style: none;
    margin-bottom: 3rem;
}

.exclusive-benefits li {
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.exclusive-benefits li::before {
    content: '♦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: bold;
}

.exclusive-button {
    padding: 1.2rem 2.5rem;
    background: transparent;
    color: var(--gold);
    border: 3px solid var(--gold);
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.exclusive-button:hover {
    background: var(--gold);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.membership-card {
    background: linear-gradient(135deg, var(--gold), var(--warm-gold));
    color: var(--dark-bg);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 3px solid var(--cream);
}

.card-ornament {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: 2px solid var(--dark-bg);
    border-radius: 50%;
    opacity: 0.3;
}

.membership-card h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.membership-card p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.card-number {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    letter-spacing: 3px;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 4rem 0 2rem;
    border-top: 3px solid var(--gold);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.footer-brand p {
    color: var(--cream);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.footer-tagline {
    color: var(--gold);
    font-weight: 500;
    font-size: 1.1rem;
}

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

.footer-column h4 {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-column a {
    display: block;
    color: var(--cream);
    text-decoration: none;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--gold);
    padding-left: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--cream);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .collections-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .exclusive-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .collection-content {
        padding: 2rem;
    }
    
    .collection-content h3 {
        font-size: 1.8rem;
    }
    
    .exclusive-text h2 {
        font-size: 2.2rem;
    }
    
    .exclusive-description {
        font-size: 1.1rem;
    }
    
    .membership-card {
        padding: 2rem 1.5rem;
    }
    
    .ornament {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .primary-button, .secondary-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .collection-content {
        padding: 1.5rem;
    }
    
    .collection-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .step {
        padding: 2rem 1.5rem;
    }
    
    .step-number {
        font-size: 3rem;
    }
    
    .exclusive-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}