/* ====== GENERAL STYLES ====== */
:root {
    /* Color palette */
    --primary-color: #0c5c63;    /* Teal */
    --secondary-color: #f8b400;  /* Gold */
    --accent-color: #e8505b;     /* Coral */
    --dark-bg: #1a2a36;          /* Dark Blue */
    --text-color: #333;
    --light-text: #f5f5f5;
    --light-bg: #f9f9f9;
    --cream-bg: #fcf8f3;
    
    /* Typography */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Lato', sans-serif;
    
    /* Spacing */
    --section-spacing: 8rem;
    
    /* Effects */
    --border-radius: 8px;
    --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

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

html {
    font-size: 62.5%; /* 10px = 1rem */
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: var(--section-spacing) 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

h1 {
    font-size: 5rem;
}

h2 {
    font-size: 3.6rem;
}

h3 {
    font-size: 2.4rem;
}

p {
    margin-bottom: 2rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul, ol {
    margin-left: 2rem;
    margin-bottom: 2rem;
}

/* ====== UTILITY CLASSES ====== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.8rem;
    color: var(--accent-color);
    font-style: italic;
}

/* ====== BUTTONS ====== */
.button {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 600;
    font-size: 1.6rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.button.primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.button.primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.button.secondary {
    background-color: var(--secondary-color);
    color: var(--dark-bg);
    border: 2px solid var(--secondary-color);
}

.button.secondary:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.cta-button {
    background-color: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
}

.cta-button:hover {
    background-color: var(--secondary-color);
    color: var(--dark-bg);
}

/* ====== HEADER STYLES ====== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    padding: 1.5rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
}

.nav-links li {
    margin-left: 3rem;
}

.nav-links a {
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* ====== HERO SECTION ====== */
.hero {
    background: linear-gradient(rgba(26, 42, 54, 0.8), rgba(26, 42, 54, 0.8)), url('https://source.unsplash.com/SYTO3xs06fU/1600x900') center/cover no-repeat;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--light-text);
    padding-top: 80px;
}

.hero h1, .hero h2 {
    color: var(--light-text);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero h2 {
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
    font-style: italic;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
}

/* ====== ABOUT SECTION ====== */
.about {
    background-color: var(--light-bg);
}

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

.about-text p:last-child {
    margin-bottom: 0;
}

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

.feature {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature p {
    margin-bottom: 0;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--secondary-color);
    z-index: -1;
}

.feature:hover::before {
    width: 100%;
    background-color: rgba(248, 180, 0, 0.1);
    transition: var(--transition);
}

/* ====== SERVICES SECTION ====== */
.services {
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.service-card {
    background-color: var(--cream-bg);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.service-card h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
    left: 50%;
    transform: translateX(-50%);
}

.service-card p {
    margin-bottom: 2rem;
}

.price {
    font-family: var(--heading-font);
    color: var(--accent-color);
    font-size: 2rem;
    font-weight: 600;
}

/* ====== PACKAGES SECTION ====== */
.packages {
    background: linear-gradient(rgba(26, 42, 54, 0.95), rgba(26, 42, 54, 0.95)), url('https://source.unsplash.com/SYTO3xs06fU/1600x900') center/cover fixed no-repeat;
    color: var(--light-text);
}

.packages .section-header h2,
.packages .section-header p {
    color: var(--light-text);
}

.packages .section-header p {
    color: var(--secondary-color);
}

.packages-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.package-card {
    background-color: var(--dark-bg);
    padding: 4rem 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-card h3 {
    color: var(--light-text);
    font-size: 2.6rem;
}

.package-card.featured {
    background: linear-gradient(45deg, var(--primary-color), rgba(12, 92, 99, 0.8));
    transform: scale(1.05);
    z-index: 5;
    grid-column: span 1;
    position: relative;
}

.package-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: var(--dark-bg);
    padding: 0.5rem 2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.4rem;
}

.duration, .price {
    font-family: var(--heading-font);
    display: block;
    margin-bottom: 2rem;
}

.duration {
    color: var(--secondary-color);
    font-size: 1.8rem;
    opacity: 0.9;
}

.package-card .price {
    color: var(--light-text);
    font-size: 2.8rem;
    margin: 1rem 0;
}

.package-card ul {
    list-style-type: none;
    text-align: left;
    margin: 2rem 0;
    flex-grow: 1;
}

.package-card li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2.5rem;
}

.package-card li:before {
    content: '\u2713';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.package-card .button {
    align-self: center;
    margin-top: 2rem;
    min-width: 15rem;
}

.packages-note {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: var(--light-text);
    opacity: 0.9;
}

.packages-note .button {
    margin-top: 2rem;
}

/* ====== GALLERY SECTION ====== */
.gallery {
    background-color: var(--cream-bg);
}

.gallery-description {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

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

.feature-item {
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    border-bottom: 4px solid var(--primary-color);
}

.feature-item:nth-child(even) {
    border-bottom-color: var(--secondary-color);
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

/* ====== TESTIMONIALS SECTION ====== */
.testimonials {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '\201C';
    position: absolute;
    font-family: var(--heading-font);
    font-size: 40rem;
    color: rgba(12, 92, 99, 0.05);
    top: -10rem;
    left: -5rem;
    line-height: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.testimonial {
    padding: 3rem;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    position: relative;
    box-shadow: var(--box-shadow);
}

.testimonial-content {
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-content p {
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author .name {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.testimonial-author .location {
    font-size: 1.4rem;
    color: var(--text-color);
    opacity: 0.7;
}

/* ====== ENTERTAINMENT SECTION ====== */
.entertainment {
    background-color: var(--dark-bg);
    color: var(--light-text);
}

.entertainment .section-header h2 {
    color: var(--light-text);
}

.entertainment-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.resource-links {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 4rem 0;
}

.resource-category {
    flex-basis: 45%;
    margin-bottom: 3rem;
}

.resource-category h3 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.resource-category ul {
    list-style-type: none;
}

.resource-category li {
    margin-bottom: 1.5rem;
}

.resource-category a {
    color: var(--light-text);
    transition: var(--transition);
    padding: 0.5rem 1rem;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.resource-category a:before {
    content: '';
    position: absolute;
    background-color: rgba(232, 80, 91, 0.2);
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    transition: var(--transition);
    z-index: -1;
}

.resource-category a:hover {
    color: var(--secondary-color);
}

.resource-category a:hover:before {
    height: 100%;
}

.disclaimer {
    margin-top: 3rem;
    font-size: 1.4rem;
    opacity: 0.8;
    font-style: italic;
}

/* ====== BOOKING SECTION ====== */
.booking {
    background: linear-gradient(rgba(12, 92, 99, 0.9), rgba(12, 92, 99, 0.9)), url('https://source.unsplash.com/uXYHYA2pPvs/1600x900') center/cover no-repeat;
    color: var(--light-text);
}

.booking .section-header h2,
.booking .section-header p {
    color: var(--light-text);
}

.booking-content {
    display: grid;
    grid-template-columns: 6fr 4fr;
    gap: 4rem;
}

.booking-form {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: var(--border-radius);
    color: var(--text-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: var(--body-font);
    font-size: 1.5rem;
    color: var(--text-color);
}

.form-group.full-width {
    grid-column: span 2;
}

.booking-form .button {
    width: 100%;
    font-size: 1.6rem;
    padding: 1.4rem;
}

.booking-info {
    color: var(--light-text);
}

.info-item {
    margin-bottom: 3rem;
}

.info-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

/* ====== FOOTER ====== */
footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 6rem 0 0;
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
}

.footer-logo img {
    margin-bottom: 2rem;
}

.footer-logo p {
    font-size: 1.4rem;
    opacity: 0.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column h3 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.footer-column ul {
    list-style-type: none;
}

.footer-column li {
    margin-bottom: 1rem;
}

.footer-column a {
    color: var(--light-text);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--secondary-color);
    opacity: 1;
}

.social-links a {
    display: flex;
    align-items: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 1.4rem;
    margin-bottom: 0;
    opacity: 0.7;
}

.footer-favicon {
    display: flex;
    align-items: center;
}

.footer-favicon img {
    width: 30px;
    height: 30px;
}

/* ====== RESPONSIVE STYLES ====== */
@media (max-width: 1200px) {
    html {
        font-size: 58%;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 56%;
    }
    
    .services-grid,
    .packages-content,
    .gallery-features,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .package-card.featured {
        grid-column: span 2;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 54%;
    }
    
    h1 {
        font-size: 3.8rem;
    }
    
    h2 {
        font-size: 3rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: var(--dark-bg);
        transition: right 0.5s ease;
        z-index: 100;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 2rem 0;
    }
    
    .nav-links a {
        color: var(--light-text);
        font-size: 2rem;
    }
    
    .about-content,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .button {
        width: 100%;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}

@media (max-width: 576px) {
    .services-grid,
    .testimonials-grid,
    .gallery-features,
    .resource-links {
        grid-template-columns: 1fr;
    }
    
    .packages-content {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        grid-column: span 1;
    }
    
    .footer-links,
    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .resource-category {
        flex-basis: 100%;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
}
