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

: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;
    text-decoration: none;
    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 {
    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: 
        linear-gradient(rgba(101, 67, 33, 0.7), rgba(139, 69, 19, 0.6)),
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(218, 165, 32, 0.2) 0%, transparent 30%),
        radial-gradient(circle at 40% 80%, rgba(255, 223, 0, 0.25) 0%, transparent 35%),
        url('./images/paris-collection.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.collection-card[data-collection="london"] .collection-image {
    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;
}

.collection-card[data-collection="riviera"] .collection-image {
    background-image:
        linear-gradient(rgba(139, 0, 0, 0.7), rgba(44, 44, 44, 0.7)),
        url('./images/riviera-collection.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.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); */
    background: 
        linear-gradient(rgba(26, 0, 0, 0.8), rgba(26, 0, 0, 0.8)),
        url('./images/luxury-background.jpg') center/cover no-repeat,
        var(--dark-bg);
    position: relative;
}

    .how-it-works::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-overlay" 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.1)" stroke-width="1"/></pattern></defs><rect width="60" height="60" fill="url(%23baroque-overlay)"/></svg>');
        opacity: 0.4;
        pointer-events: none;
    }

.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-title {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 900;
    letter-spacing: 1px;
    background: 
        linear-gradient(rgba(139, 0, 0, 0.7), rgba(139, 0, 0, 0.7)),
        url('./images/exclusive-circle.jpg') center/cover no-repeat;
    padding: 2rem 3rem;
    border-radius: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.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;
    }
}
