@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=Montserrat:wght@300;400;600&display=swap');

:root {
    --bg-dark: #022c22;
    --bg-light: #064e3b;
    --gold-start: #bf953f;
    --gold-end: #fcf6ba;
    --gold-accent: #b38728;
    --text-white: #f0fdf4;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
}

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

html {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: radial-gradient(circle at center, var(--bg-light), var(--bg-dark));
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
    padding: 3rem 1rem 6rem;
    /* top, side, and bottom padding */
}

/* Background Texture */
body::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
}

.main-container {
    text-align: center;
    padding: 3rem;
    position: relative;
    z-index: 10;
    max-width: 90vw;
    margin: auto;
    /* Centers the container automatically inside the flex column */

    /* Glassmorphism Effect */
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);

    opacity: 0;
    transform: translateY(30px);
    animation: revealContainer 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Pre-header */
.est {
    font-family: 'Cinzel', serif;
    color: var(--gold-accent);
    letter-spacing: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
}

/* Main Heading */
h1.brand-name {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: clamp(3rem, 8vw, 7rem);
    /* Massive responsive font */
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;

    /* Gold Gradient Text */
    background: linear-gradient(to bottom right,
            var(--gold-start) 20%,
            var(--gold-end) 50%,
            var(--gold-accent) 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    filter: drop-shadow(0 0 30px rgba(191, 149, 63, 0.2));
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.subtitle::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 1px;
    background: var(--gold-accent);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Status Badge */
.status-badge {
    display: block;
    width: fit-content;
    margin: 0 auto 2rem auto;
    padding: 0.5rem 1.5rem;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold-start);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid rgba(191, 149, 63, 0.4);
    border-radius: 50px;
    background: rgba(191, 149, 63, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: pulseBadge 2.5s infinite alternate ease-in-out;
}

/* Contact Section */
.contact-box {
    margin-top: 0.5rem;
    padding: 1.5rem 2rem;
    border: 1px solid rgba(191, 149, 63, 0.3);
    display: inline-flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    transition: all 0.4s ease;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
}

.contact-box:hover {
    background: rgba(191, 149, 63, 0.1);
    border-color: rgba(191, 149, 63, 0.6);
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold-accent);
}

.contact-name {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.05em;
}

.contact-number {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 700;
}

/* Footer Credit */
.credit {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 0.1rem;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
}

.credit span {
    color: var(--gold-accent);
    font-weight: 600;
}

/* Ambient Glow Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
    animation: floatOrb 10s infinite alternate ease-in-out;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(6, 78, 59, 0.8), transparent);
}

.orb-2 {
    bottom: -10%;
    right: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(191, 149, 63, 0.15), transparent);
    animation-delay: -5s;
}

/* Animations */
@keyframes revealContainer {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 50px);
    }
}

@keyframes pulseBadge {
    0% {
        box-shadow: 0 0 5px rgba(191, 149, 63, 0.1);
        border-color: rgba(191, 149, 63, 0.3);
    }

    100% {
        box-shadow: 0 0 20px rgba(191, 149, 63, 0.6);
        border-color: rgba(191, 149, 63, 0.8);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .main-container {
        padding: 2rem 1rem;
        width: 95%;
    }

    h1.brand-name {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
        /* Ensures it shrinks on very small screens */
    }

    .subtitle {
        font-size: 1rem;
    }

    .contact-box {
        padding: 1.5rem 1rem;
        /* Less padding to give text more space */
        width: 100%;
    }

    .contact-name {
        font-size: 0.9rem;
        /* Slightly smaller name on mobile */
    }

    .contact-number {
        font-size: 1.25rem;
        /* Slightly smaller number to prevent breaking */
    }
}