/* Base Styles */
:root {
    /* Colors */
    --deep-ocean-blue: #003B5C;
    --pearl-white: #F5F5F5;
    --gold: #D4AF37;
    --aqua-teal: #40E0D0;
    --sand-beige: #E6D2B5;
    --coral: #FF7F50;
    
    /* Fonts */
    --serif-font: 'Cormorant Garamond', serif;
    --sans-serif-font: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--sans-serif-font);
    font-weight: 300;
    line-height: 1.6;
    color: var(--pearl-white);
    background-color: var(--deep-ocean-blue);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: rgba(0, 59, 92, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid var(--gold);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: var(--serif-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--pearl-white);
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--gold);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 59, 92, 0.7), rgba(0, 59, 92, 0.9)), 
                url('img/photo-1710091085462-1ebb0e48f667.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 80px;
}

.hero-content h1 {
    font-family: var(--serif-font);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gold);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--gold);
    color: var(--deep-ocean-blue);
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    font-family: var(--sans-serif-font);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn:hover {
    background-color: var(--aqua-teal);
    color: var(--deep-ocean-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(64, 224, 208, 0.4);
}

.btn-small {
    display: inline-block;
    background-color: var(--gold);
    color: var(--deep-ocean-blue);
    padding: 10px 25px;
    border: none;
    border-radius: 30px;
    font-family: var(--sans-serif-font);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-small:hover {
    background-color: var(--aqua-teal);
    color: var(--deep-ocean-blue);
    transform: translateY(-2px);
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 59, 92, 0.8), rgba(0, 59, 92, 0.9)), 
                url('img/photo-1599135033965-395c13ffd6cf.jpg') center/cover no-repeat;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-family: var(--serif-font);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gold);
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Intro Section */
.intro {
    padding: 80px 0;
}

.intro .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-family: var(--serif-font);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--gold);
}

.intro-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.intro-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.intro-image img:hover {
    transform: scale(1.05);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: rgba(0, 30, 60, 0.7);
}

.features h2 {
    text-align: center;
    font-family: var(--serif-font);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--gold);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.feature-card h3 {
    font-family: var(--serif-font);
    font-size: 1.5rem;
    font-weight: 600;
    padding: 20px 20px 10px;
    color: var(--aqua-teal);
}

.feature-card p {
    padding: 0 20px 20px;
    font-size: 1rem;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 59, 92, 0.9), rgba(0, 59, 92, 0.9)), 
                url('img/photo-1734764817310-b2d511c9d4ac.jpg') center/cover no-repeat;
}

.cta h2 {
    font-family: var(--serif-font);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gold);
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background-color: rgba(0, 20, 40, 0.95);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-info h3 {
    font-family: var(--serif-font);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-info p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--pearl-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* Experiences Page */
.experiences {
    padding: 80px 0;
}

.experience-category {
    margin-bottom: 60px;
}

.experience-category h2 {
    font-family: var(--serif-font);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--gold);
    text-align: center;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.experience-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.experience-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.experience-content {
    padding: 25px;
}

.experience-content h3 {
    font-family: var(--serif-font);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--aqua-teal);
}

.experience-content p {
    margin-bottom: 20px;
    font-size: 1rem;
}

/* Packages Page */
.packages {
    padding: 80px 0;
}

.package-category {
    margin-bottom: 60px;
}

.package-category h2 {
    font-family: var(--serif-font);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--gold);
    text-align: center;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.package-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.package-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.package-content {
    padding: 25px;
}

.package-content h3 {
    font-family: var(--serif-font);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--aqua-teal);
}

.package-content p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.package-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.package-content ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
}

.package-content ul li::before {
    content: '✓';
    color: var(--gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.price {
    font-family: var(--serif-font);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    margin: 15px 0;
}

.custom-package {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 59, 92, 0.9), rgba(0, 59, 92, 0.9)), 
                url('img/photo-1677643917912-333243751461.jpg') center/cover no-repeat;
}

.custom-package h2 {
    font-family: var(--serif-font);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gold);
}

.custom-package p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Plan Visit Page */
.visit-planning {
    padding: 80px 0;
}

.planning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.planning-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.planning-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.planning-card h2 {
    font-family: var(--serif-font);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--gold);
    text-align: center;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-item h3 {
    font-family: var(--serif-font);
    font-size: 1.3rem;
    color: var(--aqua-teal);
    margin-bottom: 10px;
}

.service-item p {
    font-size: 1rem;
}

.planning-full {
    margin-top: 40px;
}

.planning-full .planning-card h2 {
    text-align: center;
    margin-bottom: 30px;
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.amenity-item {
    text-align: center;
}

.amenity-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.amenity-item h3 {
    font-family: var(--serif-font);
    font-size: 1.2rem;
    color: var(--aqua-teal);
    margin-bottom: 10px;
}

.booking-assistance {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 59, 92, 0.9), rgba(0, 59, 92, 0.9)), 
                url('img/photo-1546412414-28524ac58329.jpg') center/cover no-repeat;
}

.booking-assistance h2 {
    font-family: var(--serif-font);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gold);
}

.booking-assistance p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Page */
.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}

.contact-info h2,
.contact-form h2 {
    font-family: var(--serif-font);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--gold);
}

.contact-info p,
.contact-form p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-family: var(--serif-font);
    font-size: 1.3rem;
    color: var(--aqua-teal);
    margin-bottom: 10px;
}

.contact-item p {
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-map img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--pearl-white);
    font-family: var(--sans-serif-font);
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.emergency-contact {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 59, 92, 0.9), rgba(0, 59, 92, 0.9)), 
                url('img/photo-1643636179619-3bfab8e019e4.jpg') center/cover no-repeat;
}

.emergency-contact h2 {
    font-family: var(--serif-font);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gold);
}

.emergency-contact p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.emergency-number {
    font-family: var(--serif-font);
    font-size: 2rem;
    font-weight: 700;
    color: var(--aqua-teal);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .intro .container {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .package-grid,
    .experience-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .features h2,
    .experience-category h2,
    .package-category h2 {
        font-size: 2rem;
    }
    
    .planning-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 25px;
    }
    
    .intro-text h2,
    .features h2 {
        font-size: 1.8rem;
    }
    
    .package-grid,
    .experience-grid,
    .planning-grid {
        gap: 25px;
    }
}