:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #C5A028;
    --dark-blue: #0A192F;
    --deep-blue: #002D62;
    --bg-dark: #050b14;
    --text-light: #F4ECD8;
    /* Papyrus-like off-white */
    --accent-red: #8B0000;
    /* Subtle dark red accent from logo */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(5, 11, 20, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--primary-gold);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-gold);
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-light);
    font-size: 0.9rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    background-image: url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 11, 20, 0.3), var(--bg-dark));
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 20px 20px 60px 20px;
}

.logo-container {
    position: relative;
    display: inline-block;
}

.hero-logo {
    max-width: 500px;
    margin-top: 50px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.sun-rays {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background:
        repeating-conic-gradient(from 0deg at 50% 30%,
            transparent 0deg,
            rgba(212, 175, 55, 0.15) 0.3deg,
            rgba(255, 140, 0, 0.1) 0.6deg,
            rgba(139, 0, 0, 0.05) 0.9deg,
            transparent 1.2deg,
            transparent 2deg);
    animation: sunriseGlow 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
}

@keyframes sunriseGlow {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(0.98);
        filter: brightness(0.9) saturate(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.02);
        filter: brightness(1.1) saturate(1.2);
    }
}

.hero h1 {
    font-size: 4rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    cursor: pointer;
    background: rgba(5, 11, 20, 0.8);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    position: relative;
    z-index: 10;
}

.btn:hover,
.btn-gold:hover {
    background: var(--primary-gold);
    color: var(--dark-blue);
    box-shadow: 0 0 20px var(--primary-gold);
    transform: translateY(-2px);
}

/* Sections General */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '☥';
    /* Ankh symbol or just a decorative line */
    display: block;
    margin-top: 10px;
    font-size: 1.5rem;
    color: var(--secondary-gold);
}

/* About Section */
.about-section {
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 0, 0, 0.03) 0%, transparent 50%);
    background-attachment: fixed;
    background-position: center;
    position: relative;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services-section {
    background-color: #081220;
    background-image:
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(255, 140, 0, 0.03) 0%, transparent 40%);
    background-attachment: fixed;
    background-position: center;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s, border-color 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--text-light);
}

/* Contact Section */
.contact-section {
    background-image:
        radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(139, 0, 0, 0.04) 0%, transparent 50%);
    background-attachment: fixed;
    background-position: center;
    position: relative;
}

.contact-section p {
    text-align: center;
}

.contact-email {
    text-align: center;
    font-size: 1.8rem;
    margin: 30px 0;
}

.contact-email a {
    color: var(--primary-gold);
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-email a:hover {
    color: var(--secondary-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.contact-form {
    max-width: 600px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
    padding: 30px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(244, 236, 216, 0.6);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.delay-1 {
    animation-delay: 0.5s;
}

.delay-2 {
    animation-delay: 1s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .nav-links {
        display: none;
    }

    /* Simplified for MVP */
    .hero-logo {
        max-width: 250px;
    }
}