
:root {
    --color-bg: #fffdf5;
    --color-primary: #ff7b00;
    --color-secondary: #00c4cc;
    --color-text: #333;
    --color-accent: #ffb700;
    --color-shadow: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Baloo 2', cursive;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><path d="M100 0Q150 50 200 0Q150 100 200 200Q150 150 100 200Q50 150 0 200Q50 100 0 0Q50 50 100 0Z" fill="%2300c4cc" opacity="0.05"/></svg>');
    background-size: 200px 200px;
    z-index: -1;
    opacity: 0.3;
}

.tropical-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.palm-header {
    background-color: var(--color-bg);
    padding: 20px 0;
    box-shadow: 0 2px 10px var(--color-shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.coconut-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.coconut-logo-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255, 123, 0, 0.3);
}

.coconut-logo-icon::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px dashed var(--color-bg);
    border-radius: 50%;
    opacity: 0.7;
}

.coconut-logo-icon-inner {
    width: 50px;
    height: 50px;
    background-color: var(--color-bg);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: var(--color-primary);
    font-size: 24px;
}

.coconut-logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    text-shadow: 2px 2px 0 var(--color-accent);
    letter-spacing: 1px;
}

.beach-nav {
    display: flex;
    align-items: center;
}

.beach-nav-list {
    display: flex;
    list-style: none;
}

.beach-nav-item {
    margin-left: 30px;
}

.beach-nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.beach-nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--color-secondary);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.beach-nav-link:hover {
    color: var(--color-primary);
}

.beach-nav-link:hover::after {
    width: 100%;
}

.sun-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background-color: var(--color-accent);
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    box-shadow: 0 0 0 8px rgba(255, 183, 0, 0.2);
    transition: all 0.3s ease;
}

.sun-menu-toggle:hover {
    transform: rotate(30deg);
    box-shadow: 0 0 0 12px rgba(255, 183, 0, 0.3);
}

.sun-menu-toggle::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

.sun-menu-toggle::after {
    content: "";
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 1px;
}

/* Mobile menu */
.tropical-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--color-bg);
    box-shadow: -5px 0 15px var(--color-shadow);
    z-index: 90;
    display: flex;
    flex-direction: column;
    padding: 80px 30px;
    transition: right 0.5s ease;
    overflow-y: auto;
}

.tropical-mobile-menu.active {
    right: 0;
}

.tropical-mobile-nav-list {
    list-style: none;
    margin-top: 40px;
}

.tropical-mobile-nav-item {
    margin-bottom: 25px;
}

.tropical-mobile-nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    display: inline-block;
}

.tropical-mobile-nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--color-secondary);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.tropical-mobile-nav-link:hover {
    color: var(--color-primary);
}

.tropical-mobile-nav-link:hover::after {
    width: 100%;
}

/* Main content */
.island-main {
    padding: 60px 0;
}

/* Sections */
.wave-section {
    margin-bottom: 80px;
    position: relative;
}

.wave-section::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%2300c4cc"></path><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%2300c4cc"></path><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%2300c4cc"></path></svg>');
    background-size: cover;
    background-repeat: no-repeat;
}

.wave-section-title {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--color-primary);
    position: relative;
    display: inline-block;
    padding-left: 60px;
}

.wave-section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ff7b00"><path d="M12 2a7 7 0 017 7c0 5.5-7 13-7 13S5 14.5 5 9a7 7 0 017-7z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.wave-section-subtitle {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--color-secondary);
    position: relative;
    padding-left: 45px;
}

.wave-section-subtitle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2300c4cc"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.wave-section-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.beach-feature-list {
    list-style: none;
    margin: 30px 0;
}

.beach-feature-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 15px;
    font-size: 18px;
}

.beach-feature-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 25px;
    height: 25px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ff7b00"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

/* Intro section */
.breeze-intro {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.breeze-content {
    flex: 1 1 500px;
}

.breeze-image {
    flex: 1 1 500px;
    position: relative;
    min-height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--color-shadow);
}

.breeze-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.3) 0%,
            rgba(255, 255, 255, 0) 50%,
            rgba(255, 255, 255, 0.3) 100%
    );
    z-index: 1;
}

.breeze-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Games section */
.tropical-games {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.tropical-game-card {
    flex: 1 1 300px;
    background-color: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px var(--color-shadow);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.tropical-game-card.visible {
    opacity: 1;
    transform: translateY(0);
    animation: bounce 0.5s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.tropical-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.tropical-game-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--color-primary);
    display: flex;
    align-items: center;
}

.tropical-game-title::before {
    content: "";
    display: inline-block;
    width: 25px;
    height: 25px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ff7b00"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
}

.tropical-game-text {
    font-size: 16px;
    margin-bottom: 15px;
}

.tropical-game-rating {
    display: flex;
    align-items: center;
    color: var(--color-accent);
    font-weight: 600;
}

.tropical-game-rating::before {
    content: "★★★★★";
    letter-spacing: 3px;
    margin-right: 10px;
    font-size: 18px;
}

/* Bonuses section */
.cruise-bonuses {
    margin-top: 40px;
}

.cruise-comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 30px 0;
    position: relative;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--color-shadow);
}

.cruise-comparison-table tr:nth-child(even) {
    background-color: rgba(0, 196, 204, 0.05);
}

.cruise-comparison-table tr:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 196, 204, 0.2);
    transition: all 0.3s ease;
}

.cruise-comparison-table th,
.cruise-comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 196, 204, 0.2);
}

.cruise-comparison-table th {
    background-color: var(--color-secondary);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
}

.cruise-comparison-table td:first-child {
    font-weight: 600;
    color: var(--color-primary);
}

/* Buttons */
.island-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(to right, var(--color-primary), var(--color-accent));
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Baloo 2', cursive;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(255, 123, 0, 0.4);
}

.island-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent
    );
    transition: all 0.5s ease;
}

.island-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 123, 0, 0.6);
}

.island-button:hover::before {
    left: 100%;
}

/* Footer */
.palm-footer {
    background-color: var(--color-secondary);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.palm-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23fffdf5"></path><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23fffdf5"></path><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23fffdf5"></path></svg>');
    background-size: cover;
    background-repeat: no-repeat;
    transform: rotate(180deg);
}

.palm-footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.palm-footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.palm-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.palm-footer-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.palm-footer-link:hover {
    color: var(--color-accent);
    transform: translateY(-2px);
}

.palm-footer-copyright {
    font-size: 14px;
    color: white;
    opacity: 0.8;
    margin-top: 30px;
    text-align: center;
}

.parrot-animation {
    position: absolute;
    right: 50px;
    top: -50px;
    width: 100px;
    height: 100px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffb700"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    animation: parrotFly 15s linear infinite;
}

@keyframes parrotFly {
    0% { transform: translateX(0) translateY(0) rotate(0deg); }
    25% { transform: translateX(-200px) translateY(50px) rotate(20deg); }
    50% { transform: translateX(-400px) translateY(0) rotate(0deg); }
    75% { transform: translateX(-200px) translateY(-50px) rotate(-20deg); }
    100% { transform: translateX(0) translateY(0) rotate(0deg); }
}

/* Responsive styles */
@media (max-width: 992px) {
    .beach-nav {
        display: none;
    }

    .sun-menu-toggle {
        display: block;
    }

    .wave-section-title {
        font-size: 36px;
    }

    .wave-section-subtitle {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .wave-section-title {
        font-size: 30px;
        padding-left: 50px;
    }

    .wave-section-title::before {
        width: 40px;
        height: 40px;
    }

    .wave-section-subtitle {
        font-size: 22px;
        padding-left: 40px;
    }

    .wave-section-subtitle::before {
        width: 30px;
        height: 30px;
    }

    .breeze-intro {
        flex-direction: column;
    }

    .breeze-content,
    .breeze-image {
        flex: 1 1 100%;
    }
}

@media (max-width: 576px) {
    .coconut-logo-text {
        font-size: 24px;
    }

    .coconut-logo-icon {
        width: 50px;
        height: 50px;
    }

    .coconut-logo-icon-inner {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .wave-section {
        margin-bottom: 60px;
    }

    .wave-section-title {
        font-size: 26px;
        padding-left: 40px;
    }

    .wave-section-title::before {
        width: 30px;
        height: 30px;
    }

    .palm-footer-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}
