/* EverGold Rings - Ultra Premium Design System */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,600&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary-gold: #D4AF37;
    --primary-gold-light: #F9E29C;
    --primary-gold-dark: #B8860B;
    --bg-dark: #080808;
    --bg-surface: #121212;
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition-smooth: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.main-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Typography Classes */
.heading-hero {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 2rem;
    line-height: 1;
    letter-spacing: -0.02em;
}

.heading-section {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.heading-sub {
    font-size: 0.9rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    font-weight: 600;
}

.text-content {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    font-weight: 300;
}

.text-muted-content {
    font-size: 0.9rem;
    color: var(--text-muted);
    opacity: 0.8;
}

/* Navigation System */
.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: sticky;
    top: 0;
    background: rgba(8, 8, 8, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.nav-logo-box {
    text-decoration: none;
}

.nav-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 0.1em;
}

.nav-links-list {
    display: flex;
    list-style: none;
    gap: 3rem;
    margin: 0;
    padding: 0;
}

.nav-link-item-a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition-smooth);
    opacity: 0.7;
}

.nav-link-item-a:hover {
    opacity: 1;
    color: var(--primary-gold);
}

/* Hero Section Enhancement */
.hero-section {
    padding: 120px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 85vh;
    gap: 4rem;
}

.hero-content-box {
    flex: 1.2;
}

.hero-image-box {
    flex: 1;
    position: relative;
}

.hero-img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
    transition: var(--transition-smooth);
}

/* Premium Components */
.btn-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: transparent;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    border: 1px solid var(--primary-gold);
    transition: var(--transition-smooth);
    cursor: pointer;
}

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

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3.5rem;
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.feature-card:hover {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.05);
}

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

/* Disclosure Banner */
.disclosure-banner {
    background: var(--bg-surface);
    color: var(--text-muted);
    padding: 0.8rem;
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--glass-border);
}

/* Footer Enhancement */
.footer-section {
    background: var(--bg-dark);
    padding: 100px 5% 40px;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 80px;
}

.footer-col-heading {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary-gold);
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.footer-link-item-a {
    color: var(--text-muted);
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-link-item-a:hover {
    color: var(--text-main);
}

.copyright-box {
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* Content Page Styles */
.content-article {
    max-width: 800px;
    margin: 0 auto;
}

.content-image-full {
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 4rem auto;
    border-radius: 4px;
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 60px;
    }
    .text-content {
        margin: 0 auto;
    }
    .nav-links-list {
        display: none; /* Add hamburger in future if needed */
    }
}
