/* JumPlay Website Styles */

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

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Century+Gothic:wght@400;700&display=swap');

:root {
    --primary-orange: #f78d1e;
    --primary-blue: #064d76;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
}

body {
    font-family: 'Century Gothic', 'Trebuchet MS', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'VAG Rounded', 'Century Gothic', sans-serif;
    font-weight: 700;
    color: var(--primary-blue);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-orange);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary-orange);
}

.lang-switch {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-switch a {
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary-blue);
    border-radius: 25px;
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: bold;
    transition: all 0.3s ease;
}

.lang-switch a.active,
.lang-switch a:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* Main content */
main {
    min-height: calc(100vh - 200px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, rgba(6,77,118,0.2) 0%, rgba(247,141,30,0.2) 100%);
    color: var(--white);
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.7) !important;
    z-index: 2 !important;
    pointer-events: none !important;
}

.hero-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 50 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.hero-text {
    text-align: center;
    max-width: 800px;
    padding: 3rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 
        2px 2px 0px rgba(0,0,0,0.9),
        4px 4px 8px rgba(0,0,0,0.8),
        0px 0px 12px rgba(0,0,0,0.6);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 1;
    text-shadow: 
        1px 1px 0px rgba(0,0,0,0.9),
        2px 2px 6px rgba(0,0,0,0.8),
        0px 0px 8px rgba(0,0,0,0.6);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 
        0px 4px 12px rgba(0,0,0,0.4),
        0px 2px 4px rgba(0,0,0,0.6);
}

.btn:hover {
    background-color: var(--white);
    color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-blue);
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* Services grid */
.services {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-gif {
    width: 400px;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
    animation: float 3s ease-in-out infinite;
}

.services-header h2 {
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

/* About section */
.about {
    padding: 4rem 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Contact section */
.contact {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-orange);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    padding: 0.8rem;
    background-color: var(--primary-orange);
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    text-decoration: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    background-color: var(--white);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
    background-color: var(--white);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(6, 77, 118, 0.95);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 1rem;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.mobile-menu a:hover {
    background: rgba(247, 141, 30, 0.3);
}

.mobile-lang-switch {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.mobile-lang-switch a {
    padding: 1rem 1.5rem;
    border: 2px solid var(--white);
    border-radius: 25px;
    font-size: 1.2rem;
}

/* Desktop - ensure hamburger is hidden */
@media (min-width: 769px) {
    .hamburger {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* Ensure navigation is visible on desktop */
    nav, .lang-switch {
        display: flex !important;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .header-container {
        justify-content: space-between;
        align-items: center;
    }

    nav, .lang-switch {
        display: none;
    }

    .hero {
        min-height: 400px;
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-text {
        padding: 2rem;
    }

    .hero-content {
        min-height: 300px;
    }



    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .container {
        padding: 1rem;
    }

    .logo img {
        height: 80px;
    }
    
    .services-gif {
        width: 280px;
        height: auto;
    }
    
    .services {
        background-color: var(--white);
    }
}

@media (max-width: 1024px) {
    .services-gif {
        width: 320px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* WhatsApp Button Styling */
.whatsapp-btn {
    display: inline-flex !important;
    background: var(--primary-orange);
    color: white !important;
    padding: 0.75rem;
    border-radius: 50%;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
    box-shadow: 0 4px 12px rgba(247, 141, 30, 0.3);
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 999;
    pointer-events: auto !important;
    cursor: pointer !important;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.whatsapp-btn:hover {
    background: var(--white);
    color: var(--primary-orange) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 141, 30, 0.4);
    border-color: var(--primary-orange);
}

/* Smaller hero for about pages */
.hero-small {
    min-height: 100px !important;
    max-height: 100px !important;
    height: 100px !important;
    padding: 0.25rem !important;
}

.hero-small .hero-content {
    min-height: 60px !important;
    max-height: 60px !important;
    height: 60px !important;
}

.hero-small .hero-text {
    padding: 0.5rem !important;
}

.hero-small .hero-text h1 {
    font-size: 1.3rem !important;
    margin: 0 !important;
    padding: 0 !important;
    text-shadow: none !important;
} 