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

:root {
    --cream: #F5F1E8;
    --dark-green: #1B3D2F;
    --gold: #C9A961;
    --dark-brown: #2C1F14;
    --light-gold: #D4B880;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--dark-green) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(201, 169, 97, 0.03) 2px,
            rgba(201, 169, 97, 0.03) 4px
        );
    pointer-events: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.hero-section {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(245, 241, 232, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.logo-container {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-shield {
    position: relative;
    width: 180px;
    height: 220px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    clip-path: polygon(
        50% 0%,
        90% 15%,
        100% 50%,
        90% 85%,
        50% 100%,
        10% 85%,
        0% 50%,
        10% 15%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 10px 30px rgba(201, 169, 97, 0.4),
        inset 0 2px 10px rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.logo-m {
    font-size: 6rem;
    font-weight: 700;
    color: var(--dark-brown);
    font-family: 'Georgia', serif;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: -2px;
}

.logo-numbers {
    position: absolute;
    top: 15%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 25%;
}

.logo-2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-brown);
    font-family: 'Georgia', serif;
}

.logo-7 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-brown);
    font-family: 'Georgia', serif;
}

.brand-name {
    font-size: 4.5rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: var(--cream);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-family: 'Georgia', serif;
}

.location {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 3rem;
    font-style: italic;
    text-transform: uppercase;
    font-weight: 300;
}

.opening-announcement {
    margin: 3rem 0;
}

.coming-soon {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.website-note {
    font-size: 1rem;
    color: var(--cream);
    letter-spacing: 0.1em;
    opacity: 0.9;
    font-style: italic;
}

.ornamental-divider {
    width: 200px;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        var(--gold) 20%,
        var(--gold) 80%,
        transparent
    );
    margin: 3rem auto;
    position: relative;
}

.ornamental-divider::before,
.ornamental-divider::after {
    content: '◆';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 0.8rem;
}

.ornamental-divider::before {
    left: -30px;
}

.ornamental-divider::after {
    right: -30px;
}

.tagline {
    margin-top: 2rem;
}

.tagline p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--cream);
    letter-spacing: 0.1em;
    opacity: 0.95;
    font-weight: 300;
}

footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    color: var(--cream);
    opacity: 0.7;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .hero-section {
        padding: 2rem 1.5rem;
    }
    
    .logo-shield {
        width: 140px;
        height: 170px;
    }
    
    .logo-m {
        font-size: 4.5rem;
    }
    
    .logo-2,
    .logo-7 {
        font-size: 1.5rem;
    }
    
    .brand-name {
        font-size: 2.5rem;
        letter-spacing: 0.2em;
    }
    
    .location {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .coming-soon {
        font-size: 1.8rem;
        letter-spacing: 0.1em;
    }
    
    .website-note {
        font-size: 0.9rem;
    }
    
    .ornamental-divider {
        width: 150px;
        margin: 2rem auto;
    }
    
    .tagline p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 1.5rem 1rem;
    }
    
    .logo-shield {
        width: 120px;
        height: 145px;
    }
    
    .logo-m {
        font-size: 3.5rem;
    }
    
    .logo-2,
    .logo-7 {
        font-size: 1.2rem;
    }
    
    .logo-numbers {
        padding: 0 20%;
    }
    
    .brand-name {
        font-size: 2rem;
        letter-spacing: 0.15em;
    }
    
    .location {
        font-size: 0.9rem;
    }
    
    .coming-soon {
        font-size: 1.5rem;
    }
    
    .website-note {
        font-size: 0.85rem;
    }
    
    .tagline p {
        font-size: 1rem;
    }
}

/* Animation for subtle entrance effect */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section {
    animation: fadeInUp 1s ease-out;
}

.logo-container {
    animation: fadeInUp 1.2s ease-out;
}

.opening-announcement {
    animation: fadeInUp 1.4s ease-out;
}

