/* --- Variables & Reset (from index.css) --- */
:root {
    /* Brand Colors */
    --color-primary: #FF007F;
    /* Hot Pink */
    --color-secondary: #00E676;
    /* Vibrant Green */
    --color-bronze: #CD7F32;
    --color-dark: #1a1a1a;
    --color-light: #f5f5f5;
    --color-white: #ffffff;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    /* Added for single page navigation */
}

body {
    font-family: var(--font-body);
    background-color: var(--color-dark);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
}

/* --- Navbar (from Navbar.css) --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    z-index: 1000;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-white);
}

.navbar-logo img {
    height: 50px;
    width: auto;
    transition: height 0.3s ease;
}

.navbar.scrolled .navbar-logo img {
    height: 40px;
}

.navbar-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.navbar-link {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-white);
    position: relative;
    transition: color 0.3s ease;
}

.navbar-link:hover {
    color: var(--color-primary);
}

.navbar-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--color-secondary);
    transition: width 0.3s ease;
}

.navbar-link:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .navbar-links {
        display: none;
    }
}

/* --- Hero (from Hero.css) --- */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--color-white);
    text-align: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-content {
    z-index: 1;
    padding: 0 1rem;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 1s ease-out;
}

.hero-logo-large {
    width: 200px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 5px 15px rgba(255, 0, 127, 0.4));
    animation: float 6s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.hero-title span {
    color: var(--color-primary);
    display: block;
    font-size: 5rem;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--color-light);
    max-width: 600px;
}

.hero-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 127, 0.4);
}

.hero-cta:hover {
    transform: translateY(-3px);
    background-color: var(--color-secondary);
    box-shadow: 0 6px 20px rgba(0, 230, 118, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 768px) {
    .hero-logo-large {
        width: 150px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title span {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}

/* --- Activities (from Activities.css) --- */
.activities {
    padding: 6rem 2rem;
    background-color: var(--color-dark);
    color: var(--color-white);
}

.activities-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.activity-card {
    background-color: #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    cursor: pointer;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.activity-image {
    height: 300px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-card:hover .activity-image img {
    transform: scale(1.1);
}

.activity-info {
    padding: 1.5rem;
    text-align: center;
}

.activity-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

.activity-info p {
    color: #ccc;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .activities-title {
        font-size: 2.5rem;
    }
}

/* --- Location (from Location.css) --- */
.location {
    padding: 4rem 2rem;
    background-color: var(--color-dark);
    text-align: center;
}

.location-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--color-primary);
    text-transform: uppercase;
}

.map-container {
    width: 100%;
    max-width: 1000px;
    height: 450px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--color-bronze);
    margin-bottom: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.location-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-map {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--color-secondary);
    color: var(--color-dark);
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-map:hover {
    transform: translateY(-2px);
    background-color: var(--color-white);
}

.floating-buttons {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.social-float {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.social-float:hover {
    transform: scale(1.1);
}

.social-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}

.whatsapp {
    background-color: #25d366;
}

.instagram {
    background-color: #E1306C;
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .social-float {
        width: 50px;
        height: 50px;
    }

    .social-float svg {
        width: 25px;
        height: 25px;
    }
}

/* --- Footer (from Footer.css) --- */
.footer {
    background-color: #000;
    color: #777;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 1.2rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.footer-link {
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--color-primary);
}

.footer-copy {
    font-size: 0.8rem;
    margin-top: 1rem;
}