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

:root {
    --primary-color: #132F22;
    --accent-color: #A78951;
    --light-color: #E6DFD1;
    --secondary-green: #8E9F84;
    --dark-color: #242424;
    --white: #ffffff;
    --glass-bg: rgba(19, 47, 34, 0.767);
    --glass-border: rgba(167, 137, 81, 0.3);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-color);
    color: var(--light-color);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
.title-font {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* Background Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: linear-gradient(rgba(19, 47, 34, 0.6), rgba(36, 36, 36, 0.8)),
        url('../assets/bg-padel.png') center/cover no-repeat fixed;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--dark-color) 100%);
    opacity: 0.5;
    pointer-events: none;
}

/* Content Container */
.content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    padding: 40px;
    border-radius: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: fadeInScale 1.2s ease-out;
}

/* Logo */
.logo-container {
    margin-bottom: 10px;
}

.logo-container img {
    max-width: 210px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(167, 137, 81, 0.4));
}

/* Typography */
.coming-soon {
    font-size: 1.7rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.main-title {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 20px;
    color: var(--light-color);
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.description {
    font-size: 1.1rem;
    color: var(--secondary-green);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Social & Contact */
.contact-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(230, 223, 209, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--accent-color);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(167, 137, 81, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: 300;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: var(--accent-color);
}

.contact-item i {
    color: var(--accent-color);
}

/* Animations */
@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Responsive Design */

/* Tablet Styles */
@media (max-width: 992px) {
    .content-wrapper {
        max-width: 90%;
        padding: 40px 30px;
    }

    .main-title {
        font-size: clamp(2.5rem, 7vw, 4rem);
    }

    .logo-container img {
        max-width: 180px;
    }
}

@media (max-height: 850px) {
    .hero {
        height: 100%;
    }
}

/* Mobile Styles */
@media (max-width: 600px) {
    .hero {
        padding: 15px;
        /* Mobile background optimization */
        background-attachment: scroll;
        /* Fixed background can be laggy on mobile */
    }

    .content-wrapper {
        padding: 30px 20px;
        margin: 10px;
        width: calc(100% - 20px);
        border-radius: 15px;
    }

    .coming-soon {
        letter-spacing: 4px;
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .main-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
        letter-spacing: -1px;
    }

    .description {
        font-size: 0.95rem;
        margin-bottom: 30px;
        line-height: 1.5;
    }

    .logo-container img {
        max-width: 150px;
    }

    .social-links {
        gap: 15px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .contact-info {
        font-size: 0.9rem;
    }

    .contact-item {
        gap: 8px;
    }
}

/* Small Mobile optimization */
@media (max-width: 380px) {
    .main-title {
        font-size: 1.8rem;
    }

    .coming-soon {
        font-size: 0.8rem;
    }
}