:root {
    --primary-color: #3a4f3c;
    --secondary-color: #8b9b8d;
    --text-color: #333;
    --light-bg: #f8f8f8;
}

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

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

.hero {
    margin-top: 0;
    /* Remove any margin */
    height: 100vh;
}

.slideshow-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slides {
    height: 100%;
}

.slides img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.booking-platforms {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.platform-button {
    background-color: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.platform-button:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.platform-button img {
    height: 24px;
    width: auto;
}

.main-content {
    position: relative;
    background: white;
    padding: 4rem 2rem;
}

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

header {
    margin-bottom: 3rem;
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
}

.contact {
    background-color: var(--light-bg);
    padding: 2.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.platform-button {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 300;
    transition: all 0.3s ease;
}

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

.slides img {
    height: 600px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 1rem;
    }

    h3 {
        font-size: 2rem;
    }

    .main-content {
        margin-top: -50px;
        padding: 2rem 1rem;
    }

    .slides img {
        height: 400px;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

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

    .booking-platforms {
        flex-direction: column;
        align-items: center;
    }

    .platform-button {
        width: 100%;
        max-width: 280px;
    }
}

/* Update slideshow navigation */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 2rem 1rem;
    z-index: 10;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 100px;
    background: transparent; /* Remove background */
    transition: all 0.3s ease;
}

.prev i, .next i {
    color: rgba(255, 255, 255, 0.5); /* Semi-transparent white */
    font-size: 2rem;
    transition: all 0.3s ease;
}

.prev:hover i, .next:hover i {
    color: rgba(255, 255, 255, 1); /* Full white on hover */
}

.prev:hover, .next:hover {
    text-decoration: none;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

/* Add/update these styles */
.contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.contact i {
    font-size: 1.2rem;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-icon i {
    font-size: 1.5rem;
}

.social-icon span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-icon:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Update platform buttons */
.platform-button i {
    font-size: 1.2rem;
}

/* Add these new styles */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.5s ease-out;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.slides {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slides.active {
    opacity: 1;
}

/* Update existing slideshow styles */
.slideshow-container {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slideshow-container.loaded {
    opacity: 1;
}

/* Add these error styles */
.error-message {
    text-align: center;
    color: #721c24;
    padding: 20px;
}

.error-message i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #dc3545;
}

.error-message p {
    font-size: 1.1rem;
    margin: 0;
}

.slide {
    display: none;
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slide.active {
    display: block;
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fade {
    animation-name: fade;
    animation-duration: 2s;
}

@keyframes fade {
    from {
        opacity: 0.2;
    }
    to {
        opacity: 1;
    }
}

/* Add these new styles */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.hero-logo {
    max-width: 600px;
    width: 90%;
    height: auto;
    margin-bottom: 2rem;
    /* Add drop shadow */
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8))
           drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

/* Update hero-content if needed */
.hero-content {
    /* ... existing styles ... */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-logo-container {
    background: #4A5D23;  /* Replace with your website's primary color */
    padding: 1rem 2rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    width: 150px;
    height: auto;
    display: block;
}

/* Add gradient overlay at the top */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px; /* Adjust this for gradient height */
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 60%,
        transparent 100%
    );
    z-index: 2;
}

/* Logo styles */
.site-logo {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 3;
    width: 150px;
    height: auto;
}

/* Keep the main heading centered */
.hero-content {
    /* ... existing styles ... */
    z-index: 2;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 2rem;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    width: 120px;
    height: auto;
    filter: brightness(0) invert(1); /* Makes logo white */
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: white;
    font-size: 1.2rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.social-link:hover {
    opacity: 1;
}

.booking-container {
    position: relative;
    /* Change from absolute */
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    z-index: 2;
}

.booking-button {
    display: flex;
    align-items: center;
    background: var(--primary-color);
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.booking-button:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);  /* Subtle brightness increase */
    text-decoration: none;
}

.booking-button:hover .icon-box {
    filter: brightness(1.1);
}

.booking-button .icon-box {
    background: white;
    color: var(--primary-color);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
}

.booking-button span {
    color: white;
    padding: 0.7rem 1.5rem;
    font-weight: 500;
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    animation: bounce 2s forwards;
    z-index: 2;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
    /* Enable smooth scrolling */
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-30px) translateX(-50%);
    }
    60% {
        transform: translateY(-15px) translateX(-50%);
    }
}

/* General link styles */
a {
    color: var(--accent-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    filter: brightness(1.1);
    text-decoration: underline;
}

ul {
    list-style: inside;
    margin-bottom: 1rem;
}

/* Exception for buttons and navigation that should keep their original styling */
.nav-link,
.booking-button,
.prev,
.next {
    color: inherit;  /* These elements keep their original colors */
}

.site-footer {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-bg);
    color: var(--text-color);
    font-size: 0.9rem;
}

.site-footer p {
    margin: 0;
}

/* Gallery styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    aspect-ratio: 3/2;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 2rem;
}

.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
