/*
===========================================
OPTION 3: TROPICAL PARADISE
Vibrant greens, turquoise blues, and hot magentas
===========================================
*/

:root {
    --bg-color: #0d1f2d;
    --accent-color: #00e5cc;
    --secondary-accent: #ff00a0;
    --tertiary-accent: #39ff14;
    --text-color: #f0fff4;
    --light-gray: #1a3a4a;
    --highlight-color: #7df9ff;
    --max-width: 1200px;
    
    --main-gradient: linear-gradient(135deg, #00e5cc 0%, #39ff14 100%);
    --card-gradient: linear-gradient(135deg, #1a3a4a 0%, #2d5a6a 100%);
    --button-gradient: linear-gradient(90deg, #00e5cc, #ff00a0);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle at top, #1a3a4a 0%, #0d1f2d 100%);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-accent);
}

ul {
    list-style: none;
}

h1, h2, h3 {
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.slogan {
    color: var(--tertiary-accent);
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    text-shadow: 0 0 20px rgba(57, 255, 20, 0.8);
}

.sip {
    font-style: oblique;
    color: var(--accent-color);
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-shadow: 0 0 10px rgba(0, 229, 204, 0.8);
}

.title-kon {
    color: var(--text-color);
    text-shadow: 0 0 30px rgba(0, 229, 204, 0.8), 0 0 50px rgba(255, 0, 160, 0.4);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 6rem 0;
}

.dark-bg {
    background: var(--main-gradient);
    color: var(--text-color);
}

.accent-color {
    color: var(--accent-color);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

#go{
    color: #0d1f2d;
}
#come{
    color: black;
    font-weight: bold; 
    
}
/* Header & Navigation */
#navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.4s ease, padding 0.4s ease;
    padding: 1.5rem 0;
    background: linear-gradient(180deg, rgba(13, 31, 45, 0.95) 0%, rgba(13, 31, 45, 0.7) 100%);
    backdrop-filter: blur(10px);
}

#navbar.scrolled {
    background: linear-gradient(90deg, #1a3a4a 0%, #0d1f2d 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 229, 204, 0.3);
}

#navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 45px;
    height: 45px;
    margin-right: 0.75rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 15px rgba(0, 229, 204, 0.6);
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    text-shadow: 0 0 10px rgba(0, 229, 204, 0.6);
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-link {
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background: var(--tertiary-accent);
    transition: width 0.3s ease;
    box-shadow: 0 0 15px var(--tertiary-accent);
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1543007635-430335c05c75?q=80&w=2940&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 31, 45, 0.8) 0%, rgba(0, 229, 204, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 1rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    text-shadow: 0 0 30px rgba(0, 229, 204, 0.8), 0 0 60px rgba(57, 255, 20, 0.5);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.cta-button {
    display: inline-block;
    background: var(--button-gradient);
    color: #FFFFFF;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 8px 30px rgba(0, 229, 204, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--highlight-color);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 229, 204, 0.8), 0 0 60px rgba(255, 0, 160, 0.5);
    color: #FFFFFF;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(0, 229, 204, 0.6);
}

h2 .go{
   color: black; 
}
.sub-heading {
    display: block;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--tertiary-accent);
}

/* About Section */
.about-content .text-block h3 {
    color: var(--accent-color);
    border-bottom: 3px solid var(--secondary-accent);
    display: inline-block;
    padding-bottom: 0.3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 229, 204, 0.5);
}

.about-content ul {
    padding-left: 1.5rem;
    list-style: disc;
}

.about-content li {
    margin-bottom: 0.5rem;
}

/* Services/Menu Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 229, 204, 0.3);
    border: 2px solid var(--accent-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 229, 204, 0.1), transparent);
    transform: rotate(45deg);
    transition: 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 229, 204, 0.5), 0 0 50px rgba(255, 0, 160, 0.3);
}

.entertainment-list {
    text-align: left;
    padding-left: 0;
    list-style: none;
    margin-top: 1rem;
}

.entertainment-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: #E0E0E0;
}

.entertainment-list li::before {
    content: "•";
    color: var(--tertiary-accent);
    font-weight: 700;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    filter: drop-shadow(0 0 5px rgba(57, 255, 20, 0.8));
}

.service-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(0, 229, 204, 0.8));
}

.service-card h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    text-shadow: 0 0 10px rgba(0, 229, 204, 0.5);
}

.service-link {
    margin-top: 1rem;
    display: inline-block;
    font-weight: 600;
    color: var(--highlight-color);
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--tertiary-accent);
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.8);
}

/* Gallery Section */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 280px;
    gap: 1rem;
}

.section-padding-get {
    background: var(--main-gradient);
}

@media (max-width: 768px) {
    .image-grid {
        grid-auto-rows: 200px;
    }
}

.grid-item {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 229, 204, 0.3);
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.grid-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 40px rgba(0, 229, 204, 0.6), 0 0 30px rgba(255, 0, 160, 0.4);
}

.grid-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background-color: var(--light-gray);
    transition: transform 0.5s ease, filter 0.3s ease;
}

.grid-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.1) saturate(1.2);
}

/* Contact Section */
.contact-details {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    padding-top: 1rem;
}

.map-placeholder {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
}

.map-placeholder iframe {
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 229, 204, 0.4);
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: 2px solid var(--accent-color);
}

.info-block i {
    margin-right: 0.5rem;
    color: var(--accent-color);
    filter: drop-shadow(0 0 5px rgba(0, 229, 204, 0.6));
}
.info-block p {
    color: firebrick;
    font-weight: bold;
}

.info-block p i {
    margin-bottom: 1rem;
    color: #0d1f2d;
}

.social-block {
    text-align: center;
}

.social-block h3, .info-block h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(0, 229, 204, 0.6);
}

.social-icon {
    font-size: 2rem;
    margin-right: 1rem;
    color:#0d1f2d;
    transition: color 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

.social-icon:hover {
    color:white;
    transform: translateY(-5px) scale(1.2);
    filter: drop-shadow(0 0 15px rgba(0, 229, 204, 0.8));
}

/* Footer */
footer {
    background: linear-gradient(90deg, #0d1f2d 0%, #1a3a4a 100%);
    color: #E0E0E0;
    text-align: center;
    padding: 2rem 0;
    border-top: 2px solid var(--accent-color);
    box-shadow: 0 -5px 20px rgba(0, 229, 204, 0.3);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #25d366 0%, #128C7E 100%);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    z-index: 1001;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.6), 0 0 30px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.8), 0 0 50px rgba(37, 211, 102, 0.6);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-200 { transition-delay: 0.2s; }
.delay-400 { transition-delay: 0.4s; }
.delay-100 { transition-delay: 0.1s; }
.delay-300 { transition-delay: 0.3s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }
.delay-700 { transition-delay: 0.7s; }
.delay-800 { transition-delay: 0.8s; }
.delay-900 { transition-delay: 0.9s; }
.delay-1000 { transition-delay: 1.0s; }
.delay-1100 { transition-delay: 1.1s; }

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .logo-img {
        width: 35px;
        height: 35px;
        margin-right: 0.5rem;
    }
    
    .logo a {
        font-size: 1.5rem;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(180deg, #1a3a4a 0%, #0d1f2d 100%);
        box-shadow: 0 8px 30px rgba(0, 229, 204, 0.4);
        display: none;
        flex-direction: column;
        padding: 1rem 0;
        border-bottom: 2px solid var(--accent-color);
    }
    
    nav.active {
        display: flex;
    }
    
    .nav-links {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-links li {
        margin: 0.5rem 0;
    }
    
    .nav-link {
        display: block;
        padding: 0.8rem 0;
        font-size: 1.1rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 4rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-placeholder {
        grid-column: 1 / 2;
        grid-row: unset;
    }

    .map-placeholder iframe {
        min-height: 250px;
    }

    .entertainment-list {
        text-align: center;
    }
    
    .entertainment-list li {
        padding-left: 0;
    }
    
    .entertainment-list li::before {
        content: "";
    }

    .image-grid {
        grid-auto-rows: 200px;
    }
    
    .social-block {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}
