/* Meridian Row - Art Deco UI */
@import url('https://fonts.googleapis.com/css2?family=Limelight&family=Josefin+Sans:wght@300;400;600&family=Poiret+One&display=swap');

:root {
    --bg-dark: #121212;
    --bg-card: #1A1A1A;
    --gold-primary: #D4AF37;
    --gold-light: #F4C430;
    --gold-dim: #8A7020;
    --emerald: #004225;
    --text-light: #E0E0E0;
    --border-width: 2px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Josefin Sans', sans-serif;
    background-image: 
        linear-gradient(30deg, #1a1a1a 12%, transparent 12.5%, transparent 87%, #1a1a1a 87.5%, #1a1a1a),
        linear-gradient(150deg, #1a1a1a 12%, transparent 12.5%, transparent 87%, #1a1a1a 87.5%, #1a1a1a),
        linear-gradient(30deg, #1a1a1a 12%, transparent 12.5%, transparent 87%, #1a1a1a 87.5%, #1a1a1a),
        linear-gradient(150deg, #1a1a1a 12%, transparent 12.5%, transparent 87%, #1a1a1a 87.5%, #1a1a1a),
        linear-gradient(60deg, #222 25%, transparent 25.5%, transparent 75%, #222 75%, #222),
        linear-gradient(60deg, #222 25%, transparent 25.5%, transparent 75%, #222 75%, #222);
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Limelight', cursive;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Utilities */
.text-gold {
    color: var(--gold-primary) !important;
}

.bg-gold {
    background-color: var(--gold-primary);
    color: var(--bg-dark);
}

.border-gold {
    border-color: var(--gold-primary) !important;
}

.font-deco {
    font-family: 'Poiret One', cursive;
    font-weight: bold;
}

/* Navbar */
.navbar {
    background-color: rgba(18, 18, 18, 0.95);
    border-bottom: 3px double var(--gold-primary);
    padding: 1rem 0;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-family: 'Limelight', cursive;
    font-size: 1.8rem;
    color: var(--gold-primary) !important;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.nav-link {
    font-family: 'Poiret One', cursive;
    font-size: 1.1rem;
    color: var(--text-light) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-primary) !important;
    text-shadow: 0 0 5px var(--gold-primary);
}

/* Buttons */
.btn-deco {
    background-color: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
    font-family: 'Poiret One', cursive;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.btn-deco::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--gold-primary);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-deco:hover {
    color: var(--bg-dark);
}

.btn-deco:hover::before {
    left: 0;
}

/* Hero Section */
.hero-section {
    padding: 10rem 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.6) 0%, rgba(18,18,18,1) 100%), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    position: relative;
    border-bottom: 3px double var(--gold-primary);
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 0px #000, 0 0 20px rgba(212, 175, 55, 0.5);
}

.hero-subtitle {
    font-family: 'Poiret One', cursive;
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    letter-spacing: 3px;
}

/* Deco Cards */
.deco-card {
    background-color: var(--bg-card);
    border: 1px solid var(--gold-dim);
    padding: 2rem;
    position: relative;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.deco-card::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid var(--gold-primary);
    pointer-events: none;
}

.deco-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    border-color: var(--gold-primary);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title {
    font-size: 3rem;
    display: inline-block;
    padding: 0 20px;
    background-color: var(--bg-dark);
    position: relative;
    z-index: 1;
}

.section-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 1px solid var(--gold-dim);
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: 0;
    opacity: 0.3;
}

/* New Sections Styling */
.stat-box {
    border: 1px solid var(--gold-primary);
    padding: 2rem;
    position: relative;
}

.stat-number {
    font-family: 'Limelight', cursive;
    font-size: 3.5rem;
    color: var(--gold-primary);
}

.step-diamond {
    width: 80px;
    height: 80px;
    background-color: var(--bg-card);
    border: 2px solid var(--gold-primary);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.step-number {
    transform: rotate(-45deg);
    font-family: 'Limelight', cursive;
    font-size: 1.5rem;
    color: var(--gold-primary);
}

.testimonial-text {
    font-family: 'Poiret One', cursive;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-light);
    border-left: 3px solid var(--gold-primary);
    padding-left: 20px;
}

/* Coupon Code */
.coupon-code {
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    background-color: #000;
    border: 1px dashed var(--gold-primary);
    color: var(--gold-primary);
    padding: 10px 20px;
    margin: 1.5rem 0;
    cursor: pointer;
    transition: all 0.3s;
}

.coupon-code:hover {
    background-color: var(--gold-primary);
    color: #000;
}

/* Footer */
.footer {
    background-color: #000;
    border-top: 3px double var(--gold-primary);
    padding: 5rem 0 2rem;
    margin-top: 5rem;
}

.footer h4, .footer h6 {
    color: var(--gold-primary);
}

.footer-link {
    color: #888;
    text-decoration: none;
    font-family: 'Poiret One', cursive;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}
