/* 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;
    color: #333;
    background-color: var(--pearl-white);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--serif-font);
    font-weight: 600;
    color: var(--deep-ocean-blue);
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--deep-ocean-blue);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--aqua-teal);
}

/* Header */
header {
    background-color: rgba(0, 59, 92, 0.95);
    color: var(--pearl-white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--pearl-white);
}

.logo p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--aqua-teal);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: var(--pearl-white);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

nav ul li a.active,
nav ul li a:hover {
    color: var(--aqua-teal);
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--aqua-teal);
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0, 59, 92, 0.7), rgba(0, 59, 92, 0.7)), 
                url('img/photo-1465415074239-84142598d04d.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--pearl-white);
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--pearl-white);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--aqua-teal);
}

.page-hero {
    background-color: var(--deep-ocean-blue);
    color: var(--pearl-white);
    padding: 4rem 0;
    text-align: center;
}

.page-hero h2 {
    color: var(--pearl-white);
}

.page-hero p {
    color: var(--aqua-teal);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--gold);
    color: var(--deep-ocean-blue);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

.btn:hover {
    background-color: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-small {
    display: inline-block;
    background-color: var(--deep-ocean-blue);
    color: var(--pearl-white);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-small:hover {
    background-color: var(--aqua-teal);
    color: var(--deep-ocean-blue);
}

/* Sections */
section {
    padding: 4rem 0;
}

/* Intro Section */
.intro {
    background-color: var(--pearl-white);
}

.intro .container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.intro-text {
    flex: 1;
}

.intro-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.intro-image img:hover {
    transform: scale(1.05);
}

/* Features */
.features {
    background-color: var(--sand-beige);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background-color: var(--pearl-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.feature-card h3 {
    padding: 1.5rem 1rem 0.5rem;
}

.feature-card p {
    padding: 0 1rem 1.5rem;
}

/* CTA */
.cta {
    background: linear-gradient(rgba(0, 59, 92, 0.9), rgba(0, 59, 92, 0.9)), 
                url('img/photo-1661943864527-d714736dfd16.jpg');
    background-size: cover;
    background-position: center;
    color: var(--pearl-white);
    text-align: center;
}

.cta h2 {
    color: var(--pearl-white);
}

.cta p {
    color: var(--aqua-teal);
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: var(--deep-ocean-blue);
    color: var(--pearl-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-info h3 {
    color: var(--pearl-white);
    margin-bottom: 1rem;
}

.footer-info p {
    color: var(--aqua-teal);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: var(--aqua-teal);
}

.footer-links ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: var(--aqua-teal);
}

/* Experiences Page */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.experience-item {
    background-color: var(--pearl-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.experience-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.experience-content {
    padding: 1.5rem;
}

.experience-category {
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    background-color: var(--sand-beige);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

/* Premium Packages */
.packages-section {
    background-color: var(--pearl-white);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.package-card {
    background-color: var(--sand-beige);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.package-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.package-content {
    padding: 1.5rem;
}

.package-content ul {
    list-style: none;
    margin: 1rem 0;
}

.package-content ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 59, 92, 0.1);
}

.package-content ul li:last-child {
    border-bottom: none;
}

.package-content ul li:before {
    content: "✓";
    color: var(--aqua-teal);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-right: 0.5em;
}

.package-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 59, 92, 0.1);
}

.custom-packages {
    background-color: var(--deep-ocean-blue);
    color: var(--pearl-white);
    text-align: center;
    padding: 4rem 0;
}

.custom-packages h3 {
    color: var(--pearl-white);
}

.custom-packages p {
    color: var(--aqua-teal);
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

/* Plan Visit */
.planning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

.planning-item img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.transport-options {
    margin-top: 1.5rem;
}

.transport-option {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 59, 92, 0.1);
}

.transport-option:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.visit-info {
    background-color: var(--sand-beige);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-item ul {
    list-style: none;
}

.info-item ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 59, 92, 0.1);
}

.info-item ul li:last-child {
    border-bottom: none;
}

.info-item ul li:before {
    content: "•";
    color: var(--aqua-teal);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-right: 0.5em;
}

.assistance {
    text-align: center;
    background: linear-gradient(rgba(0, 59, 92, 0.9), rgba(0, 59, 92, 0.9)), 
                url('img/photo-1673069299933-384fc4ea25a8.jpg');
    background-size: cover;
    background-position: center;
    color: var(--pearl-white);
    padding: 4rem 0;
}

.assistance h3 {
    color: var(--pearl-white);
}

.assistance p {
    color: var(--aqua-teal);
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h4 {
    color: var(--aqua-teal);
    margin-bottom: 0.5rem;
}

.social-media {
    margin-top: 2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    display: inline-block;
    background-color: var(--deep-ocean-blue);
    color: var(--pearl-white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.social-icon:hover {
    background-color: var(--aqua-teal);
    color: var(--deep-ocean-blue);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--sans-serif-font);
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--aqua-teal);
}

.map-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 59, 92, 0.8);
    color: var(--pearl-white);
    padding: 1.5rem;
}

.emergency-contact {
    background-color: var(--deep-ocean-blue);
    color: var(--pearl-white);
    text-align: center;
    padding: 3rem 0;
}

.emergency-contact h3 {
    color: var(--pearl-white);
}

.emergency-contact p {
    color: var(--aqua-teal);
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin-top: 1rem;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 0.5rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .intro .container {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 60vh;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
    }
    
    section {
        padding: 2rem 0;
    }
}