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

:root {
    --bg-color: #00273e;
    --brown-dark: #6f2f0c;
    --brown-light: #97480f;
    --accent-glow: rgba(111, 47, 12, 0.2);
    --text-color: #ffffff;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles (Mobile First) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    background: radial-gradient(circle at center, #003b5f 0%, var(--bg-color) 100%);
    color: var(--text-color);
    min-height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    z-index: 1;
}

/* Background Effects */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    animation: pulse 6s infinite alternate ease-in-out;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.7;
    }
}

/* Logo Styles */
.logo-container {
    width: 100%;
    max-width: 340px;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.2s;
}

.logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.6));
    display: block;
}

/* Button Styles */
.cta-container {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.5s;
}

.btn {
    display: inline-block;
    padding: 1.1rem 3.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: borderGlow 4s infinite alternate ease-in-out;
}

/* Subtle Shimmer Effect */
.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: 0.6s;
}

.btn:hover::after {
    left: 100%;
}

@keyframes borderGlow {
    0% { border-color: rgba(255, 255, 255, 0.1); }
    100% { border-color: rgba(255, 255, 255, 0.35); }
}

.btn:hover {
    border-color: var(--brown-light);
    box-shadow: 0 0 40px var(--accent-glow);
    transform: translateY(-4px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
}

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

/* Tablet Breakpoint (768px) */
@media (min-width: 768px) {
    .hero::before {
        width: 500px;
        height: 500px;
    }

    .logo-container {
        max-width: 480px;
        margin-bottom: 4rem;
    }

    .btn {
        padding: 1.2rem 2.8rem;
        font-size: 1rem;
        letter-spacing: 2px;
    }
}

/* Desktop Breakpoint (1024px) */
@media (min-width: 1024px) {
    .hero::before {
        width: 700px;
        height: 700px;
    }

    .logo-container {
        max-width: 600px;
        margin-bottom: 5rem;
    }

    .btn {
        padding: 1.3rem 3.5rem;
        font-size: 1.1rem;
        letter-spacing: 3px;
    }
}

/* High Resolution Screens */
@media (min-width: 1440px) {
    .logo-container {
        max-width: 720px;
    }
}
/* Footer Styles */
.site-footer {
    width: 100%;
    padding: 4rem 1.5rem 3rem;
    background: rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    line-height: 1.8;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-content p {
    margin-bottom: 0.5rem;
}

.footer-legal {
    font-size: 0.7rem;
    margin: 1.5rem auto !important;
    opacity: 0.7;
    font-weight: 300;
}

.footer-contact {
    margin-top: 1.5rem;
    font-weight: 400;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.footer-contact a:hover {
    color: var(--text-color);
    border-bottom-color: var(--brown-light);
}

@media (max-width: 767px) {
    .site-footer {
        padding: 3rem 1rem;
    }
    
    .footer-legal {
        text-align: justify;
    }
}

.footer-links {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transition: var(--transition);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: var(--transition);
    font-weight: 300;
    white-space: nowrap;
}

.footer-links a:hover {
    color: var(--text-color);
    opacity: 1;
}

@media (max-width: 1024px) {
    .footer-links {
        gap: 1.5rem;
    }
}

@media (max-width: 850px) {
    .footer-links {
        flex-direction: column;
        gap: 1.2rem;
        padding-bottom: 2rem;
    }
}
