/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@400;500;600;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background-color: #faf9f6;
}

/* Header Styles */
.site-header {
    background-color: #faf9f6;
    /* Usage of off-white cream background */
    padding: 20px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    /* Very subtle shadow */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: #d4af37;
    /* Gold color */
    letter-spacing: 3px;
    font-weight: 700;
}

/* Navigation */
.main-nav>ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
    position: relative;
    /* Context for mega menu if needed, though we use container usually */
}

.main-nav>ul>li {
    display: inline-block;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    padding: 10px 0;
    /* Add padding for better hover target */
    display: block;
}

.main-nav a:hover {
    color: #d4af37;
}

.has-dropdown {
    position: relative;
    /* Keep it relative for simple dropdowns, but for mega menu we might want static if full width */
}

/* Mega Menu Logic */
.mega-menu-parent {
    position: static;
    /* Allows the mega menu to span the full header/container width if positioned relative to container or header */
}

.mega-menu {
    visibility: hidden;
    /* Use visibility/opacity for transition */
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    /* Softer shadow */
    z-index: 100;
    padding: 30px 0;
    border-top: 1px solid #eee;

    /* Smooth Transition */
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    /* Prevent interaction when hidden */
}

/* HOVER ONLY - Explicitly requested "cursor arn giyama open wenna" (open when cursor goes there) */
.mega-menu-parent:hover .mega-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-menu-inner {
    display: flex;
    justify-content: space-between;
}

.mega-column {
    flex: 1;
    padding-right: 20px;
}

.mega-column h4 {
    font-family: 'Cinzel', serif;
    color: #333;
    font-size: 16px;
    margin-bottom: 15px;
    border-bottom: 1px solid #d4af37;
    display: inline-block;
    padding-bottom: 5px;
}

.mega-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-column ul li {
    margin-bottom: 10px;
}

.mega-column ul li a {
    text-transform: none;
    /* Normal text for sub-items */
    font-weight: 500;
    font-size: 14px;
    color: #555;
    padding: 0;
}

.mega-column ul li a:hover {
    color: #d4af37;
    padding-left: 5px;
    /* Subtle movement */
}

/* Gold Price Info */
.gold-price-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Hero Section */
.hero-section {
    /* Using local generated image */
    background-image: url('/images/hero-bg-final.png');
    background-size: cover;
    background-position: center;
    /* Full screen as requested */
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    /* Add left padding to shift text into the empty dark space */
    padding-left: 8%;
}

/* Linear Gradient Overlay for text readability */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    /* Gradient on left side */
    height: 100%;
    background: linear-gradient(90deg, rgba(8, 12, 18, 0.9) 0%, rgba(10, 10, 20, 0.6) 60%, rgba(10, 10, 20, 0) 100%);
}

.h-100 {
    height: 100%;
    display: flex;
    align-items: center;
    width: 100%;
}

/* Override Container for Hero to allow text far left */
.hero-section .container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    /* Text is now positioned by the section padding */
}

/* "Timeless Elegance..." typography match */
.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    /* Adjusted for this layout */
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: 0px;
    color: #fff;
    text-transform: none;
    /* Keep Pascal Case as per sample */
}

/* Remove minimal small text styles if present or reset */
.hero-small,
.hero-subtitle-text {
    display: none;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 450px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 0;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 1px solid white;
}

.btn-primary {
    background-color: white;
    color: black;
    border-color: white;
}

.btn-primary:hover {
    background-color: #f0f0f0;
    border-color: #f0f0f0;
}

.btn-outline {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.gold-icon svg {
    display: block;
}

.price-details {
    text-align: right;
}

.date-label {
    font-size: 11px;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.price-value {
    font-size: 18px;
    color: #d4af37;
    font-weight: 700;
    letter-spacing: 0.5px;
}