@font-face {
    font-family: 'LeonidasBrand';
    src: url('InknutAntiqua-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Custom Properties & Reset */
:root {
    /* Colors */
    --clr-bg-top: #1c110d;
    --clr-bg-mid: #140a06;
    --clr-bg-bottom: #0f0704;
    --clr-footer: #0d1117;
    
    --clr-gold: #d4b47a;
    --clr-gold-dim: #997b4a;
    --clr-gold-hover: #e8c990;
    --clr-text: #f0e6d2;
    --clr-text-gray: #a39581;
    --clr-white: #ffffff;
    --clr-border: #4a3c30;
    
    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'LeonidasBrand', Georgia, 'Times New Roman', serif;
    
    /* Animation */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--clr-white);
    background-color: var(--clr-bg-bottom);
    background-image: radial-gradient(ellipse at 50% 0%, #2a1610 0%, #150a06 40%, var(--clr-bg-bottom) 100%);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* Background Image Hero Section */
.bg-hero-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('background-image-hero-section.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
}

.content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    padding: 3rem 0;
    display: flex;
    justify-content: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
    margin-bottom: 0.5rem;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--clr-white);
    letter-spacing: 1px;
}

.logo-subtext {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--clr-text-gray);
    letter-spacing: 0.5px;
    margin-top: 0.2rem;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 500;
}

.highlight {
    color: var(--clr-gold);
}

.divider-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 2rem 0;
    color: var(--clr-gold);
    font-size: 1.5rem;
}
.divider-left .line {
    height: 1px;
    width: 100px;
    background-color: var(--clr-gold-dim);
    margin-right: 1rem;
}
.divider-left .line:last-child {
    margin-right: 0;
    margin-left: 1rem;
    width: 60px; /* shorter right line for left aligned */
}

.divider-center {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    color: var(--clr-gold);
    font-size: 1.5rem;
}
.divider-center .line {
    height: 1px;
    width: 60px;
    background-color: var(--clr-gold-dim);
    margin: 0 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 0;
    text-align: left;
}

.hero-content {
    max-width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3.5rem, 5vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: 0px;
    font-weight: 700;
    color: var(--clr-gold);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--clr-white);
    margin-bottom: 0.5rem;
}

.hero-highlight-text {
    font-size: 1.25rem;
    color: var(--clr-gold);
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
}

.btn i {
    font-size: 1.2rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--clr-gold);
    color: var(--clr-gold);
}

.btn-outline:hover {
    background: rgba(212, 180, 122, 0.1);
    box-shadow: 0 0 20px rgba(212, 180, 122, 0.2);
    transform: translateY(-2px);
}

.btn-solid {
    background: var(--clr-gold);
    border: none;
    color: var(--clr-bg-bottom);
}

.btn-solid:hover {
    background: var(--clr-gold-hover);
    box-shadow: 0 0 20px rgba(212, 180, 122, 0.4);
}

/* Features Section */
.features {
    padding: 6rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.section-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
}

.section-title-wrapper .line {
    height: 1px;
    width: 60px;
    background-color: var(--clr-gold-dim);
    margin: 0 2rem;
}

.section-title {
    color: var(--clr-gold);
    font-size: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 0 1rem;
    position: relative;
    transition: var(--transition-smooth);
}

.feature-card:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--clr-border), transparent);
}

.feature-icon {
    font-size: 3rem;
    color: var(--clr-gold);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--clr-white);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--clr-text-gray);
    line-height: 1.6;
}

.feature-card:hover {
    transform: translateY(-5px);
}
.feature-card:hover .feature-icon {
    color: var(--clr-gold-hover);
    transform: scale(1.05);
    transition: var(--transition-smooth);
}

/* Countdown Section */
.countdown-section {
    padding: 6rem 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--clr-bg-bottom);
}

.countdown-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.timer {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0 3rem 0;
    justify-content: flex-start;
}

.timer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(212, 180, 122, 0.3);
    border-radius: 8px;
    background: transparent;
    transition: var(--transition-smooth);
}
.timer-box:hover {
    border-color: var(--clr-gold-dim);
}

.timer-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--clr-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.timer-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--clr-text-gray);
}

.notify-text {
    color: var(--clr-gold);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Form */
.notify-form {
    width: 100%;
    max-width: 500px;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: transparent;
    border: 1px solid rgba(212, 180, 122, 0.3);
    border-radius: 50px;
    padding: 0;
    transition: var(--transition-smooth);
    overflow: hidden;
}
.input-group:focus-within {
    border-color: var(--clr-gold);
}

.input-icon {
    position: absolute;
    left: 1.5rem;
    font-size: 1.2rem;
    color: var(--clr-text-gray);
}

.input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1rem 1rem 3.5rem;
    color: var(--clr-white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    outline: none;
}
.input-group input::placeholder {
    color: var(--clr-text-gray-dark);
}

.input-group .btn {
    padding: 1rem 2.5rem;
    border-radius: 0;
    height: 100%;
}

.privacy-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--clr-text-gray);
    margin-top: 1.5rem;
}

/* Footer */
.footer {
    background-color: var(--clr-footer);
    padding: 4rem 2rem 2rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 3rem;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-img {
    height: 60px;
    opacity: 0.9;
}

.footer-logo-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--clr-white);
    letter-spacing: 1px;
}

.footer-logo-subtext {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    color: var(--clr-text-gray);
}

.footer-social, .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-social h4, .footer-contact h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--clr-white);
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--clr-border);
    border-radius: 50%;
    color: var(--clr-gold);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    text-decoration: none;
}
.social-icons a:hover {
    background: var(--clr-gold);
    color: var(--clr-footer);
    border-color: var(--clr-gold);
    transform: translateY(-3px);
}

.footer-contact {
    text-align: right;
}

.footer-contact a {
    color: var(--clr-text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}
.footer-contact a:hover {
    color: var(--clr-gold);
}

.footer-contact address {
    font-style: normal;
    color: var(--clr-text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    text-align: center;
    color: var(--clr-text-gray-dark);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        align-items: center;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
        align-items: center;
    }
    .timer {
        justify-content: center;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 3rem;
    }
    .feature-card:nth-child(2)::after {
        display: none;
    }
    
    .chocolate-box {
        right: -10%;
        opacity: 0.3;
    }
}

@media (max-width: 768px) {
    .hero {
        text-align: center;
        margin: 0 auto;
    }
    .hero .divider {
        justify-content: center;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    
    .timer {
        gap: 0.5rem;
    }
    .timer-box {
        width: 80px;
        height: 80px;
    }
    .timer-number {
        font-size: 1.8rem;
    }
    .timer-label {
        font-size: 0.6rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    .footer-contact {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .feature-card::after {
        display: none !important;
    }
    
    .input-group {
        flex-direction: column;
        border: none;
        border-radius: 0;
        gap: 1rem;
    }
    .input-group input {
        border: 1px solid rgba(212, 180, 122, 0.3);
        border-radius: 50px;
        width: 100%;
    }
    .input-group .btn {
        width: 100%;
        border-radius: 50px;
    }
    .input-icon {
        top: 1rem;
    }
}
