/* Global Styles and Variables */
:root {
    --primary-color: #00a8cc;
    --secondary-color: #ffc93c;
    --accent-color: #ff6b6b;
    --tropical-green: #4ecdc4;
    --sand-color: #f7dc6f;
    --ocean-blue: #0077be;
    --sunset-orange: #ff6347;
    --light-bg: #fefefe;
    --text-color: #2c3e50;
    --gradient-ocean: linear-gradient(135deg, #00a8cc 0%, #0077be 100%);
    --gradient-sunset: linear-gradient(135deg, #ffc93c 0%, #ff6347 100%);
    --gradient-tropical: linear-gradient(135deg, #4ecdc4 0%, #00a8cc 50%, #ffc93c 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
    --shadow-tropical: 0 12px 40px rgba(0,168,204,0.3);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--light-bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
    line-height: 1.2;
    color: var(--ocean-blue);
}

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

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 0 rgba(0,0,0,0.05);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: white;
    box-shadow: var(--shadow-md);
}

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

.nav-brand h1 {
    font-family: 'Kaushan Script', cursive;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin: 0;
}

.brand-tagline {
    font-size: 0.9rem;
    color: var(--ocean-blue);
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-sunset);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.book-now {
    background: var(--gradient-sunset);
    color: white;
    padding: 0.7rem 1.8rem;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.nav-link.book-now:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-md);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,119,190,0.3) 0%, rgba(0,168,204,0.4) 100%);
    z-index: 1;
}

.hero-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-tropical);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    padding: 2rem;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Kaushan Script', cursive;
    font-size: 4.5rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    color: white;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-sunset);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeIn 1.2s ease forwards;
}

.fade-in:nth-child(2) {
    animation-delay: 0.3s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Wave Animation */
@keyframes wave {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Kaushan Script', cursive;
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-color);
    font-weight: 300;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--light-bg) 0%, #f0f9ff 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-family: 'Kaushan Script', cursive;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #555;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    animation: wave 3s ease-in-out infinite;
}

.feature:nth-child(2) .feature-icon {
    animation-delay: 0.2s;
}

.feature:nth-child(3) .feature-icon {
    animation-delay: 0.4s;
}

.feature h4 {
    font-size: 1.3rem;
    color: var(--ocean-blue);
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 0.95rem;
    color: #666;
}

.about-image {
    position: relative;
}

.image-placeholder {
    background: var(--gradient-tropical);
    padding: 2rem;
    border-radius: 20px;
    color: white;
    text-align: center;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-tropical);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Rooms Section */
.rooms {
    padding: 6rem 0;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
}

.room-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-10px) rotate(-1deg);
    box-shadow: var(--shadow-tropical);
}

.room-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.room-image .image-placeholder {
    height: 100%;
    min-height: auto;
    border-radius: 0;
}

.room-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-sunset);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.room-content {
    padding: 2.5rem;
}

.room-content h3 {
    font-family: 'Kaushan Script', cursive;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--ocean-blue);
}

.room-description {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #555;
}

.room-features {
    list-style: none;
    margin-bottom: 2rem;
}

.room-features li {
    padding: 0.7rem 0;
    color: #666;
    border-bottom: 1px dashed #e0e0e0;
}

.room-features li:last-child {
    border-bottom: none;
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.room-price {
    font-size: 0.95rem;
    color: #666;
}

.room-price span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--sunset-orange);
}

.btn-room {
    background: var(--gradient-ocean);
    color: white;
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
}

.btn-room:hover {
    background: var(--gradient-sunset);
}

/* Amenities Section */
.amenities {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #f0f9ff 0%, var(--light-bg) 100%);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.amenity-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-tropical);
    border-color: var(--tropical-green);
}

.amenity-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: wave 4s ease-in-out infinite;
}

.amenity-card:nth-child(even) .amenity-icon {
    animation-delay: 0.5s;
}

.amenity-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--ocean-blue);
}

.amenity-card p {
    color: #666;
    line-height: 1.7;
}

/* Location Section */
.location {
    padding: 6rem 0;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.location-info h3 {
    font-family: 'Kaushan Script', cursive;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.location-info p {
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: #555;
}

.distances h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--ocean-blue);
}

.distance-list {
    list-style: none;
    margin-bottom: 3rem;
}

.distance-list li {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    border-bottom: 1px dashed #e0e0e0;
    transition: var(--transition);
}

.distance-list li:hover {
    padding-left: 1rem;
    background: linear-gradient(to right, rgba(0,168,204,0.05) 0%, transparent 100%);
}

.distance-icon {
    font-size: 1.8rem;
    margin-right: 1.5rem;
    animation: wave 3s ease-in-out infinite;
}

.distance-list strong {
    color: var(--sunset-orange);
}

.location-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.location-feature {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.location-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.location-feature h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--ocean-blue);
}

.location-feature p {
    color: #666;
}

.map-placeholder {
    background: var(--gradient-tropical);
    height: 450px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-tropical);
}

.btn-directions {
    background: var(--gradient-sunset);
    color: white;
    display: block;
    text-align: center;
    width: 100%;
    box-shadow: var(--shadow-md);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--light-bg) 0%, #f0f9ff 100%);
}

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

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-tropical);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--ocean-blue);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    transition: var(--transition);
    font-size: 0.95rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--tropical-green);
    box-shadow: 0 0 0 3px rgba(78,205,196,0.1);
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    background: var(--gradient-sunset);
    box-shadow: var(--shadow-md);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-tropical);
}

.form-notification {
    margin-top: 1.5rem;
    padding: 1.2rem;
    border-radius: 10px;
    text-align: center;
    display: none;
    font-weight: 500;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-notification.success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.form-notification.error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

.contact-info h3 {
    font-family: 'Kaushan Script', cursive;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.info-item {
    display: flex;
    margin-bottom: 2rem;
    align-items: start;
}

.info-icon {
    font-size: 1.8rem;
    margin-right: 1.5rem;
    margin-top: 0.3rem;
    animation: wave 3s ease-in-out infinite;
}

.info-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--ocean-blue);
    font-size: 1.1rem;
}

.info-item p {
    color: #666;
    line-height: 1.7;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--sunset-orange);
}

.contact-cta {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--sand-color);
}

.contact-cta h4 {
    font-family: 'Kaushan Script', cursive;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--ocean-blue);
}

.contact-cta p {
    margin-bottom: 1.5rem;
    color: #666;
}

/* Footer */
.footer {
    background: var(--gradient-ocean);
    color: white;
    padding: 4rem 0 1.5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-sunset);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-family: 'Kaushan Script', cursive;
}

.footer-section p {
    line-height: 1.8;
    color: #e0e0e0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    font-size: 1.8rem;
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.9;
}

.footer-social a:hover {
    transform: translateY(-5px) rotate(15deg);
    opacity: 1;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--sand-color);
    padding-left: 8px;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.9rem;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
}

.btn-newsletter {
    background: var(--gradient-sunset);
    color: white;
    padding: 0.9rem 1.8rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    white-space: nowrap;
}

.btn-newsletter:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.newsletter-note {
    font-size: 0.85rem;
    color: #b0c4de;
    margin-top: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: #e0e0e0;
}

.footer-bottom a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer-bottom a:hover {
    color: var(--sand-color);
}

.footer-tagline {
    font-family: 'Kaushan Script', cursive;
    font-size: 1.2rem;
    color: var(--sand-color);
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-tropical);
    }

    .nav-menu.active {
        right: 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .about-content,
    .location-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .nav-brand h1 {
        font-size: 1.8rem;
    }

    .rooms-grid,
    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .location-features {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}

/* Animation for scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Tropical Loading Animation */
@keyframes tropicalPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.loading {
    animation: tropicalPulse 1.5s ease-in-out infinite;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-ocean);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--ocean-blue);
}