/* Premium Website Styles */
:root {
    --primary-color: #B8860B;
    --secondary-color: #1a1a1a;
    --accent-color: #DAA520;
    --text-color: #333333;
    --light-text: #ffffff;
    --transition-speed: 0.3s;
}

/* Smooth scrolling for entire page */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background: linear-gradient(to right, #004d40, #00695c);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 77, 64, 0.25);
    border-bottom: 1px solid #4CAF50;
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    padding: 0.5rem 0;
    background: linear-gradient(to right, #00352c, #004d40);
    border-bottom: 2px solid #4CAF50;
}

/* Brand Text Styles */
.brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.125rem;
    transition: all var(--transition-speed) ease;
}

.brand-text span {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #FFD700, #DAA520);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all var(--transition-speed) ease;
    letter-spacing: 0.1em;
}

.brand-text:hover span {
    filter: brightness(1.2);
    transform: translateY(-1px);
}

.header.scrolled .brand-text span {
    transform: scale(0.95);
}

/* Navigation Links */
.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: all var(--transition-speed) ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #FFD700, #DAA520);
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    opacity: 0;
}

.nav-link:hover {
    color: #69f0ae;
}

.nav-link:hover::after {
    width: 100%;
    opacity: 1;
    background: linear-gradient(to right, #69f0ae, #4CAF50);
}

/* Mobile Menu Button */
#mobile-menu-button {
    color: #DAA520;
    transition: all var(--transition-speed) ease;
}

#mobile-menu-button:hover {
    color: #FFD700;
    transform: scale(1.1);
}

/* Mobile Menu */
#mobile-menu {
    background: linear-gradient(to bottom, rgba(17, 17, 17, 0.98), rgba(28, 28, 28, 0.98));
    border-top: 1px solid rgba(218, 165, 32, 0.1);
    padding: 1rem 0;
}

#mobile-menu a {
    color: rgba(255, 255, 255, 0.9);
    transition: all var(--transition-speed) ease;
    padding: 0.75rem 1.5rem;
    display: block;
}

#mobile-menu a:hover {
    background: rgba(218, 165, 32, 0.1);
    color: #FFD700;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

/* Section Animations */
.reveal-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Gallery Section */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed) ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Amenities Section */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.amenity-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed) ease;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid #eee;
    border-radius: 5px;
    transition: border-color var(--transition-speed) ease;
}

.form-input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.submit-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Statistics Section */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed) ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.counter {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Mobile-first Media Queries */
@media (max-width: 768px) {
    .hero-content {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .gallery-container {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .form-input {
        padding: 0.75rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .premium-btn {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1.5rem;
        font-size: 16px;
    }

    #mobile-menu {
        border-radius: 0.5rem;
        margin: 0.5rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    #mobile-menu a {
        padding: 0.75rem 1rem;
        border-radius: 0.25rem;
    }

    .footer {
        text-align: center;
    }

    .footer .social-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .brand-text span:first-child {
        font-size: 1.125rem;
    }

    .brand-text span:last-child {
        font-size: 1.25rem;
    }
}

/* Notification Styles */
.notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 2rem;
    border-radius: 5px;
    color: white;
    z-index: 1000;
    animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Premium Button Styles */
.premium-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.premium-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: all 0.6s ease;
}

.premium-btn:hover::before {
    left: 100%;
}

.premium-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed) ease;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

/* Gallery Slider Styles */
.mainSwiper {
    width: 100%;
    height: 600px;
    margin-bottom: 2rem;
}

.thumbSwiper {
    width: 100%;
    height: 120px;
    box-sizing: border-box;
    padding: 10px 0;
}

.thumbSwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.thumbSwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: white;
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.9);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

/* Gallery Overlay */
.mainSwiper .swiper-slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    border-radius: 0 0 8px 8px;
}

/* Logo Styles */
.header img {
    transition: transform var(--transition-speed) ease;
}

.header.scrolled img {
    transform: scale(0.9);
}

.header a:hover img {
    transform: scale(1.05);
}

/* Footer Styles */
.footer {
    background: linear-gradient(to right, #004d40, #00695c);
    color: #ffffff;
    border-top: 2px solid #4CAF50;
}

.text-gold {
    color: #4CAF50;
}

.footer-link {
    color: #b2dfdb;
    transition: all var(--transition-speed) ease;
    display: inline-block;
}

.footer-link:hover {
    color: #69f0ae;
    transform: translateX(5px);
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4CAF50;
    transition: all var(--transition-speed) ease;
}

.social-link:hover {
    background: #4CAF50;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.25);
}

/* Update contact section background */
#contact {
    background: linear-gradient(to bottom, #f3f4f6, #e5e7eb);
}

/* Form Improvements */
.form-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Button Improvements */
.premium-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

/* Contact Cards */
@media (max-width: 768px) {
    .contact-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .contact-info {
        font-size: 0.875rem;
    }

    .contact-title {
        font-size: 1.25rem;
    }
}

/* Improved Mobile Navigation */
#mobile-menu {
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
}

#mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Touch-friendly Buttons */
button, 
a.premium-btn,
.form-input,
.nav-link {
    min-height: 44px; /* iOS minimum touch target size */
} 