/* Custom fonts loaded via HTML link: Cinzel, Outfit, Playfair Display */

:root {
    --color-primary: #0c231a;
    --color-primary-light: #183d2e;
    --color-accent: #d49930;
    --color-accent-light: #f5c469;
    --color-bg-dark: #071711;
    --color-bg-deep: #030a08;
    --color-text-light: #ffffff;
    --color-text-muted: #a3b899;
    --color-border: rgba(212, 153, 48, 0.2);
    --font-serif: 'Cinzel', serif;
    --font-sans: 'Outfit', sans-serif;
    --font-cursive: 'Playfair Display', serif;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg-deep);
    color: var(--color-text-light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
    padding: 40px 20px;
}

/* Glowing background blobs */
.bg-glow-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 153, 48, 0.08) 0%, rgba(3, 10, 8, 0) 70%);
    top: -200px;
    left: -200px;
    z-index: 1;
    pointer-events: none;
}

.bg-glow-2 {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(24, 61, 46, 0.4) 0%, rgba(3, 10, 8, 0) 70%);
    bottom: -200px;
    right: -200px;
    z-index: 1;
    pointer-events: none;
}

.container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Header Brand styling */
.brand-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
}

.logo-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid var(--color-accent);
    padding: 3px;
    background: var(--color-bg-dark);
    box-shadow: 0 0 30px rgba(212, 153, 48, 0.25);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.logo-circle:hover {
    transform: rotate(360deg) scale(1.05);
}

.logo-svg {
    width: 70%;
    height: 70%;
    fill: var(--color-accent);
}

.brand-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-text-light);
}

.brand-sub {
    font-size: 0.85rem;
    letter-spacing: 5px;
    color: var(--color-accent);
    font-weight: 600;
    margin-top: 4px;
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(212, 153, 48, 0.08);
    border: 1px solid var(--color-accent);
    border-radius: 30px;
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    box-shadow: 0 0 15px rgba(212, 153, 48, 0.1);
    animation: pulse 2.5s infinite;
}

/* Main Heading & Intro */
.main-content {
    margin-bottom: 45px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

h1 {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    line-height: 1.15;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

h1 .highlight {
    color: var(--color-accent);
}

.intro-p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Countdown Grid */
.countdown-container {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 0.4s both;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 600px;
}

.countdown-box {
    flex: 1 1 110px;
    max-width: 130px;
    min-width: 100px;
    aspect-ratio: 1;
    background: rgba(12, 35, 26, 0.4);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.countdown-box:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent-light);
    box-shadow: 0 12px 40px rgba(212, 153, 48, 0.15);
}

.countdown-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 6px;
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-muted);
    font-weight: 600;
}

/* Glassmorphic Form Card */
.form-card {
    width: 100%;
    max-width: 500px;
    padding: 35px 30px;
    background: rgba(7, 23, 17, 0.65);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.form-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.form-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 25px;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: rgba(3, 10, 8, 0.6);
    border: 1px solid rgba(212, 153, 48, 0.25);
    border-radius: 6px;
    color: var(--color-text-light);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(3, 10, 8, 0.9);
    box-shadow: 0 0 10px rgba(212, 153, 48, 0.15);
}

.btn-gold {
    width: 100%;
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 13px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-gold:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 153, 48, 0.3);
}

/* Form feedback alert */
.alert-box {
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    display: none;
    text-align: left;
}

.alert-box.success {
    background-color: rgba(21, 87, 36, 0.2);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.4);
}

.alert-box.error {
    background-color: rgba(114, 28, 36, 0.2);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.4);
}

/* Quick Contact & Social grid */
.contacts-panel {
    width: 100%;
    max-width: 600px;
    margin-bottom: 45px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(12, 35, 26, 0.4);
    border: 1px solid var(--color-border);
    border-radius: 30px;
    color: var(--color-text-light);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-btn i {
    font-size: 1.1rem;
}

.contact-btn.whatsapp {
    border-color: rgba(37, 211, 102, 0.4);
}

.contact-btn.whatsapp i {
    color: #25d366;
}

.contact-btn:hover {
    background: var(--color-primary-light);
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.social-row {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(12, 35, 26, 0.3);
    border: 1px solid var(--color-border);
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--color-accent);
    color: var(--color-primary);
    border-color: var(--color-accent);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(212, 153, 48, 0.25);
}

/* Footer Copyright */
footer {
    font-size: 0.8rem;
    color: rgba(163, 184, 153, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    margin-top: auto;
    width: 100%;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 1s both;
}

footer a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Keyframes */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 153, 48, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(212, 153, 48, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 153, 48, 0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    .intro-p { font-size: 1rem; }
    .countdown-container { gap: 10px; }
    .countdown-box { flex: 1 1 80px; min-width: 80px; }
    .countdown-number { font-size: 1.8rem; }
    .countdown-label { font-size: 0.65rem; }
    .form-card { padding: 25px 20px; }
    .contact-btn { padding: 8px 16px; font-size: 0.85rem; }
}

