/* CSS Variables for Color System */
:root {
    --color-bg-primary: #3B0764;        
    --color-bg-section: #2D0550;        
    --color-bg-card: #4A0E7A;           
    --color-gold: #C9A84C;              
    --color-gold-light: #E8C97A;        
    --color-gold-muted: #9A7A35;        
    --color-text-primary: #F9F3E3;      
    --color-text-secondary: #D4B896;    
    --color-text-muted: #A08060;        
    --color-border: rgba(201,168,76,0.25);  
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Jost', sans-serif;
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    line-height: 1.6;
}
h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.02em;
}
a {
    text-decoration: none;
    color: inherit;
}
button {
    font-family: inherit;
    cursor: pointer;
}
img {
    max-width: 100%;
    height: auto;
}


.section-label {
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--color-gold-muted);
    text-transform: uppercase;
    margin-bottom: 1rem;
}


.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: background 0.3s ease;
}
.navbar.scrolled {
    background: rgba(43, 5, 80, 0.95);
    backdrop-filter: blur(12px);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    height: 60px;
}
.nav-links {
    display: flex;
    list-style: none;
}
.nav-links li {
    margin-left: 2rem;
    position: relative;
}
.nav-links a {
    color: var(--color-gold);
    font-weight: 400;
    transition: color 0.3s ease;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}
.nav-links a:hover::after {
    width: 100%;
}
.cta-button {
    background: var(--color-gold);
    color: var(--color-bg-section);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.3s ease;
}
.cta-button:hover {
    background: var(--color-gold-light);
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--color-gold);
    margin: 3px 0;
    transition: 0.3s;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg-primary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
}
.mobile-menu.active {
    display: flex;
}
.mobile-menu a {
    color: var(--color-gold);
    font-size: 1.5rem;
    margin: 1rem 0;
}


section {
    min-height: 100vh;
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


#home {
    background: radial-gradient(circle at center, #5A1090 0%, var(--color-bg-section) 100%),
                linear-gradient(135deg, rgba(201,168,76,0.06) 0%, transparent 100%);
    position: relative;
    overflow: hidden;
}
#home::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}
.hero-content {
    text-align: center;
    z-index: 1;
    animation: fadeUp 1s ease-out;
}
.hero-label {
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    color: var(--color-gold-muted);
    margin-bottom: 1rem;
    animation: fadeUp 1s ease-out 0.2s both;
}
.hero-headline {
    font-size: 4.5rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    animation: fadeUp 1s ease-out 0.4s both;
}
.hero-subheadline {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    animation: fadeUp 1s ease-out 0.6s both;
}
.hero-ctas {
    display: flex;
    gap: 1rem;
    animation: fadeUp 1s ease-out 0.8s both;
}
.btn-primary {
    background: var(--color-gold);
    color: var(--color-bg-section);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.3s ease;
}
.btn-primary:hover {
    background: var(--color-gold-light);
}
.btn-outline {
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.btn-outline:hover {
    background: var(--color-gold);
    color: var(--color-bg-section);
}
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}
.scroll-indicator::after {
    content: '↓';
    font-size: 2rem;
    color: var(--color-gold);
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}


#about {
    background: var(--color-bg-section);
}
#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gold), transparent);
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    width: 100%;
}
.about-text h2 {
    color: var(--color-text-primary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.about-text p {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}
.about-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.about-card {
    background: var(--color-bg-card);
    border-left: 3px solid var(--color-gold);
    padding: 1.5rem;
    border-radius: 8px;
}
.about-card h3 {
    color: var(--color-gold-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.about-card p {
    color: var(--color-text-secondary);
}


#services {
    background: var(--color-bg-primary);
}
.services-content {
    max-width: 1000px;
    width: 100%;
    text-align: center;
}
.services-content h2 {
    color: var(--color-text-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.services-content .section-sub {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.service-card {
    background: var(--color-bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}
.service-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.service-icon {
    width: 60px;
    height: 60px;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}
.service-card h3 {
    color: var(--color-gold-light);
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.service-card p {
    color: var(--color-text-secondary);
}

#contact {
    background: var(--color-bg-section);
}
#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gold), transparent);
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    width: 100%;
}
.contact-form h2 {
    color: var(--color-gold);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.contact-form .section-sub {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-input {
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    color: var(--color-text-primary);
    font-size: 1rem;
    transition: all 0.2s ease;
}
.form-input:focus {
    border-color: var(--color-gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-input::placeholder {
    color: var(--color-text-muted);
}
.form-textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.contact-item span:last-child {
    color: var(--color-text-secondary);
}


footer {
    background: #1E0338;
    padding: 2rem;
}
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gold), transparent);
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}
.footer-logo img {
    height: 40px;
    margin-bottom: 0.5rem;
}
.footer-tagline {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}
.footer-links a {
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--color-gold);
}
.footer-social {
    color: var(--color-text-secondary);
}
.footer-social .handle {
    color: var(--color-gold);
    font-weight: 500;
}
.copyright {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--color-text-muted);
    font-weight: 300;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}


@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .cta-button {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    .hero-label {
        margin-top: 2rem;
    }
    .footer-logo img {
        height: 50px;
    }
    .hero-headline {
        font-size: 2.375rem;
    }
    .hero-subheadline {
        font-size: 1rem;
    }
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    section {
        padding: 4rem 2rem;
    }
}

@media (min-width: 769px) {
    .scroll-indicator {
        display: none;
    }
    .logo img {
        height: 70px;
    }
    .footer-logo img {
        height: 50px;
    }
}


.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


.back-to-top {
    position: fixed;
    bottom: 5rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--color-gold);
    color: var(--color-bg-section);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}