:root {
    --bg-main: #ffffff;
    --bg-secondary: #f1f5f9;
    --bg-card: #ffffff;

    --text-main: #000000;
    --text-muted: #333333;

    --accent-gold: #b4941f;
    --accent-gold-hover: #927618;

    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;

    --transition-standard: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

a {
    color: var(--text-main);
    text-decoration: none;
    transition: color var(--transition-standard);
}

a:hover {
    color: var(--accent-gold);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.title-underline {
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
    margin-bottom: 40px;
}

.title-underline.center {
    margin: 0 auto 40px auto;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-standard);
    padding: 20px 0;
    background: #000000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    background: #000000;
    padding: 12px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 80px;
    width: auto;
    mix-blend-mode: screen;
}

.logo h1 {
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin: 0;
    color: #888888;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    color: #888888;
    font-weight: 500;
}

.nav-links li a:hover {
    color: #ffffff;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    background-color: #ffffff;
    bottom: -5px;
    left: 0;
    transition: width var(--transition-standard);
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../assets/background.jpg') center/cover no-repeat;
    position: relative;
    padding-top: 100px; /* Offset for fixed navbar */
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    color: #ffffff;
}

.hero h2 {
    font-size: 3.5rem;
    letter-spacing: 3px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero h3 {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.hero p {
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 40px;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition-standard);
    font-family: var(--font-heading);
}

.btn-outline {
    border: 1px solid var(--accent-gold);
    color: #ffffff;
    background: var(--accent-gold);
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: var(--bg-main);
}

/* Buttons for smaller places */
.btn-outline-small {
    border: 1px solid var(--text-muted);
    color: var(--text-muted);
    background: transparent;
    padding: 8px 20px;
    font-size: 0.8rem;
}

.btn-outline-small:hover {
    border-color: var(--text-main);
    color: var(--text-main);
}

.btn-primary-small {
    background: var(--accent-gold);
    color: var(--bg-main);
    border: 1px solid var(--accent-gold);
    padding: 8px 20px;
    font-size: 0.8rem;
}

.btn-primary-small:hover {
    background: var(--accent-gold-hover);
    border-color: var(--accent-gold-hover);
}

/* About Section */
.about {
    background-color: var(--bg-secondary);
}

.about p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: justify;
}

.about strong {
    color: var(--text-main);
}

.homer-quote {
    margin-top: 40px;
    padding: 30px;
    border-left: 3px solid var(--accent-gold);
    background: var(--bg-card);
    font-style: italic;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.homer-quote span {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-family: var(--font-body);
}

/* Contact Section */
.contact-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 60px 40px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.info-item {
    text-align: center;
    padding: 20px;
    transition: transform var(--transition-standard);
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-item .icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.info-item p,
.info-item a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.info-item a:hover {
    color: var(--accent-gold);
}

/* Footer */
footer {
    background-color: var(--bg-secondary);
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo a {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--text-main);
}

.copyright p {
    color: #666666;
    font-size: 0.85rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    z-index: 9999;
    transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text h4 {
    color: var(--accent-gold);
    margin-bottom: 5px;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 800px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

.slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpAnim 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes slideUpAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    height: 2px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 10px;
    transition: all var(--transition-standard);
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .hero h2 {
        font-size: 3rem;
    }

    .logo-img {
        height: 70px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #000000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--transition-standard);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links li a {
        font-size: 1.5rem;
    }

    .logo-img {
        height: 65px;
    }

    .hero h2 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .hero h3 {
        font-size: 1.1rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .about p {
        font-size: 1rem;
        text-align: left;
    }

    .contact-card {
        padding: 40px 20px;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .logo-img {
        height: 60px;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}