/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: transparent;
    box-shadow: none;
    top: 0;
    left: 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

nav.scrolled {
    background: rgba(1, 20, 15, 0.95);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.logo {
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 50px;
    width: auto;
    margin-right: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #3498db;
}

.nav-links {
    display: flex;
    list-style: none;
    margin-right: 20px;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #3498db;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2980b9;
}

.nav-links li a:hover {
    color: #3498db;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('images/mysterious-forest.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 80px; /* Add padding to account for fixed navbar */
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    width: 100%;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    animation: popIn 1.2s ease-out 0.5s both;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: popIn 1.2s ease-out 0.8s both;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    70% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Sections */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
}

/* Features */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature-card i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 20px;
}

/* Gallery */
.gallery {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #01140F;
}

.gallery-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    padding: 0 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.gallery-item {
    position: relative;
    overflow: visible;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
    width: 300px;
    height: 225px;
    margin: 0 auto;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #f5f5f5;
    padding: 10px;
}

.gallery-item::before,
.gallery-item::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background-color: #f5f5f5;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: -1;
}

.gallery-item::before {
    top: -10px;
    left: -10px;
    transform: rotate(-2deg);
    background-color: #e0e0e0;
}

.gallery-item::after {
    top: -5px;
    left: -5px;
    transform: rotate(1deg);
    background-color: #e8e8e8;
}

.gallery-item:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover::before {
    transform: rotate(-3deg) translateY(-5px);
}

.gallery-item:hover::after {
    transform: rotate(2deg) translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Add photo corners to make it look like a photo in an album */
.gallery-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    top: 5px;
    left: 5px;
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 100% 30%, 30% 30%, 30% 100%, 0 100%);
}

.gallery-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    top: 5px;
    right: 5px;
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 70% 30%, 70% 30%, 0 30%);
}

/* Add a third pseudo-element for the bottom right corner */
.gallery-item .photo-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    bottom: 5px;
    right: 5px;
    z-index: 2;
    clip-path: polygon(0 70%, 30% 70%, 30% 100%, 0 100%);
}

/* Add a fourth pseudo-element for the bottom left corner */
.gallery-item .photo-corner-2 {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    bottom: 5px;
    left: 5px;
    z-index: 2;
    clip-path: polygon(70% 70%, 100% 70%, 100% 100%, 70% 100%);
}

/* Add a photo stack effect */
.gallery-item .photo-stack {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.gallery-item .photo-stack::before,
.gallery-item .photo-stack::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.gallery-item .photo-stack::before {
    top: -5px;
    left: -5px;
    transform: rotate(-1deg);
    background-color: #e0e0e0;
}

.gallery-item .photo-stack::after {
    top: -10px;
    left: -10px;
    transform: rotate(-2deg);
    background-color: #e8e8e8;
}

.show-all-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 20, 15, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
    z-index: 3;
}

.gallery-item:hover .show-all-overlay {
    opacity: 1;
}

.show-all-overlay span {
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.gallery-item:hover .show-all-overlay span {
    transform: scale(1.1);
}

.show-all-container {
    text-align: center;
    margin-top: 20px;
}

.show-all-button {
    background-color: transparent;
    color: #01140F;
    border: 2px solid #01140F;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.show-all-button:hover {
    background-color: #01140F;
    color: white;
}

.gallery-full {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gallery-full.active {
    display: flex !important;
}

.gallery-slider {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-slider .gallery-item {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.3s ease;
    border-radius: 0 !important;
    box-shadow: none !important;
    background-color: rgba(1, 20, 15, 0.3);
    padding: 20px;
}

.gallery-slider .gallery-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: 1px solid rgba(1, 20, 15, 0.5);
}

.close-gallery {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(1, 20, 15, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1002;
}

.close-gallery:hover {
    background: rgba(1, 20, 15, 1);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .close-gallery {
        width: 40px;
        height: 40px;
        font-size: 20px;
        top: 10px;
        right: 10px;
    }

    .gallery-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* Booking Form */
.booking {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.booking h2 {
    text-align: center;
    margin-bottom: 40px;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

button[type="submit"] {
    background-color: #01140F;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #022820;
}

/* Footer */
footer {
    background-color: rgba(1, 20, 15, 0.95);
    color: #fff;
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: flex-end;
}

.social-links a {
    color: white;
    font-size: 24px;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    section {
        padding: 60px 0;
    }

    .gallery-slider .gallery-item {
        flex: 0 0 90%;
    }
}

@media (max-width: 480px) {
    .gallery-slider .gallery-item {
        flex: 0 0 95%;
    }
}

/* Contact Buttons */
.contact-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.contact-button-container {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
    border: none;
    cursor: pointer;
}

.contact-button i {
    margin-right: 15px;
    font-size: 1.3rem;
}

.contact-button .fa-chevron-down {
    margin-left: 15px;
    font-size: 0.9rem;
}

.call-button {
    background-color: #01140F;
    color: white;
}

.call-button:hover {
    background-color: #3498db;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.email-button {
    background-color: #01140F;
    color: white;
}

.address-button {
    background-color: #01140F;
    color: white;
}

.email-button:hover {
    background-color: #3498db;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
    top: 100%;
    left: 0;
    margin-top: 5px;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown-content a i {
    margin-right: 10px;
    color: #3498db;
}

.show {
    display: block;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.faq h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #01140F;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    background-color: #3498db;
    color: white;
    border-radius: 50px;
}

.faq-question:hover {
    background-color: #2980b9;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.faq-question i {
    color: white;
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: white;
    border-radius: 0 0 50px 50px;
}

.faq-answer.active {
    padding: 0 20px 20px;
    max-height: 100px;
}

.faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-question h3 {
        font-size: 0.9rem;
        padding-right: 5px;
    }
    
    .faq-question {
        padding: 10px 15px;
    }
    
    .faq-question i {
        font-size: 0.8rem;
    }
}

/* Calendar Section */
.calendar {
    padding: 80px 0;
    background-color: white;
}

.calendar h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #01140F;
}

.calendar-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    width: 100%;
    padding: 0;
}

.calendar-container iframe {
    display: block;
    width: 100%;
    height: 600px;
    border: none;
    background-color: transparent;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(1, 20, 15, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
}

.gallery-nav:hover {
    background: rgba(1, 20, 15, 1);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
    left: 20px;
}

.gallery-nav.next {
    right: 20px;
}

.gallery-nav i {
    font-size: 24px;
}

@media (max-width: 768px) {
    .gallery-nav {
        width: 40px;
        height: 40px;
    }

    .gallery-nav i {
        font-size: 20px;
    }

    .gallery-nav.prev {
        left: 10px;
    }

    .gallery-nav.next {
        right: 10px;
    }
}

.album-name {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #01140F;
    margin-top: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
    width: 100%;
}

/* Remove the underline by removing the ::after pseudo-element */
.album-name::after {
    display: none;
}

.album-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
}

@media (max-width: 768px) {
    .gallery-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .album-container {
        margin-bottom: 30px;
    }
}

/* Video container styles */
.video-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-container video {
    max-width: 100%;
    max-height: 100%;
    border: 1px solid rgba(1, 20, 15, 0.5);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .gallery-nav {
        width: 40px;
        height: 40px;
    }

    .gallery-nav i {
        font-size: 20px;
    }

    .gallery-nav.prev {
        left: 10px;
    }

    .gallery-nav.next {
        right: 10px;
    }
}

/* Social Media Buttons */
.social-media-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: white;
}

.social-button i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.facebook-button {
    background-color: #1877f2;
}

.instagram-button {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .social-media-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-button {
        width: 100%;
        max-width: 300px;
    }
}

.about {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.about .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    padding-left: 20px;
}

.about p {
    margin-bottom: 20px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: 0;
    margin-right: auto;
}

.about p:first-of-type {
    text-indent: 2em;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none; /* Hidden by default on all devices */
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    background-color: rgba(1, 20, 15, 0.95);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}

.menu-toggle:hover {
    background-color: rgba(1, 20, 15, 1);
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.menu-toggle i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.menu-toggle.active i {
    transform: rotate(90deg);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex; /* Only show on mobile devices */
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: rgba(1, 20, 15, 0.98);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 20px;
        transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        display: flex;
        border-radius: 0 0 0 15px;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 0 0 15px 0;
        width: 100%;
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        transition-delay: calc(0.1s * var(--i, 0));
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links a {
        display: block;
        padding: 12px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: white;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .nav-links a:before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #3498db;
        transition: width 0.3s ease;
    }
    
    .nav-links a:hover {
        color: #3498db;
        padding-left: 10px;
    }
    
    .nav-links a:hover:before {
        width: 100%;
    }
} 