﻿/* ===================== Reset and Variables ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1f3468;
    --primary-pink: #d51678;
    --light-gray: #f3f2f2;
    --dark-gray: #586978;
    --white: #ffffff;
    --text-dark: #0c0d0a;
    --accent-blue: #2660c3;
    --accent-yellow: #e7bb47;
    color-scheme: light;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 16px;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

/* ===================== Header ===================== */
.header {
  width: 100%;
  overflow: hidden;
}

.header-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 767px) {
  .header-image {
    content: url('/static/images/responsive/header-mobile.jpg');
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .header-image {
    content: url('/static/images/responsive/header-tablet.jpg');
  }
}

.top-bar {
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .container,
.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.social-links a {
    color: var(--white);
    font-size: 16px;
    transition: opacity 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    opacity: 0.7;
}

.contact-info {
    display: flex;
    gap: 10px;
    align-items: center;
}

.main-header {
    padding: 15px 0;
    background: var(--white);
}

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

.whatsapp-buttons {
    display: flex;
    gap: 15px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: #25d366;
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s;
}

.whatsapp-btn:hover {
    background: #22c55e;
}

.whatsapp-btn img {
    width: 20px;
    height: 20px;
}

/* ===================== Navigation ===================== */
.navigation {
    background: var(--primary-blue);
    padding: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    height: 60px;
    margin: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    padding: 20px;
    display: block;
    font-weight: 500;
    font-size: 14px;
    transition: background 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(255, 255, 255, 0.1);
}

.pay-btn {
    background: var(--primary-pink) !important;
    margin-left: auto;
    border-radius: 5px;
}

.pay-btn:hover {
    background: #b8145d !important;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    list-style: none;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    margin: 0;
    padding: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    color: var(--text-dark);
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.dropdown-menu a:hover {
    background: var(--light-gray);
}

/* ===================== Main Content ===================== */
.main-content {
    min-height: calc(100vh - 300px);
    padding: 40px 0;
    background: var(--white);
}

.custom-section {
    padding: 0 0;
    text-align: center;
}

.custom-section h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.custom-section p {
    font-size: 18px;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===================== Footer ===================== */
.footer {
  width: 100%;
  overflow: hidden;
}

.footer-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 767px) {
  .footer-image {
    content: url('/static/images/responsive/footer-mobile.jpg');
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .footer-image {
    content: url('/static/images/responsive/footer-tablet.jpg');
  }
}


/*
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 2rem;
    max-width: 1200px;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

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

.footer-social a {
    color: var(--white);
    font-size: 24px;
    transition: opacity 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    opacity: 0.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    width: 100%;
    max-width: 1200px;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-bottom a {
    color: var(--white);
    text-decoration: none;
}
*/
/* ===================== Responsive ===================== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-blue);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        z-index: 1000;
    }

    .nav-menu.mobile-open a {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .top-bar .container,
    .main-header .container,
    .whatsapp-buttons,
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .custom-section h1 {
        font-size: 24px;
    }
}
