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

html {
    overflow-x: hidden;
}

/* General Styling */
body {
    background-color: #6d9886;
    color: #fac585;
    font-family: 'Raleway', sans-serif;
    margin: 0;
    line-height: 1.6;
    /* overflow: hidden; */ /* Allow scrolling */
}

#main-content {
    display: none;
    overflow-y: auto; /* Allow scroll only on main content */
    background-color: #6d9886;
}

/* Landing Page */
#landing-page {
    background-color: #6d9886;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease-out;
    position: relative;
    overflow: hidden;
}

#landing-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/arabesque.png');
    background-repeat: repeat;
    opacity: 0.1;
    z-index: 0;
}

#landing-logo {
    width: 200px;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.image-container {
    position: relative;
    display: inline-block;
}


.image-container img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.image-container img:first-child {
    position: relative;
}

@keyframes bellSwing {
    0% {
        transform: rotate(8deg);
    }
    50% {
        transform: rotate(-8deg);
    }
    100% {
        transform: rotate(8deg);
    }
}

#bottomImage {
    animation: bellSwing 3s ease-in-out infinite;
    transform-origin: center center;
}

#landing-label {
    opacity: 0;
    margin-top: 1rem;
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(100deg, #B29A68 0%, #F1E2AC 30%, #D4BE8D 50%, #F1E2AC 70%, #B29A68 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #c0c0c0; /* Fallback color */
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    transition: opacity 2s ease-in-out 1s;
    position: relative;
    z-index: 1;
}

#landing-logo.fade-in {
    opacity: 1;
}

#landing-label.fade-in {
    opacity: 1;
}

html {
    scroll-behavior: smooth;
}

a {
    color: #fac585;
    text-decoration: none;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: normal;
}

/* Header and Navigation */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: transparent;
    padding: 0.5rem 2rem;
    box-sizing: border-box;
    transition: background-color 0.5s ease;
    overflow-x: hidden;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

header.scrolled {
    background: rgba(0, 0, 0, 0.5);
}

nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

nav .logo {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
    transition: color 0.3s ease;
    background: linear-gradient(100deg, #B29A68 0%, #F1E2AC 30%, #D4BE8D 50%, #F1E2AC 70%, #B29A68 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

nav ul li a:hover {
    color: #fff;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: #fac585;
    margin: 5px 0;
}

/* Hero Section */
#hero {
    height: 100vh;
    overflow: hidden; /* Prevent vertical overflow */
    padding: 0;
    border-bottom: none;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

.hero-text h1 {
    font-size: 1.5rem;
    margin: 0;
    background: linear-gradient(100deg, #B29A68 0%, #F1E2AC 30%, #D4BE8D 50%, #F1E2AC 70%, #B29A68 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.5rem;
    margin: 0;
    background: linear-gradient(100deg, #B29A68 0%, #F1E2AC 30%, #D4BE8D 50%, #F1E2AC 70%, #B29A68 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Info Section */
#info-section {
    padding: 4rem 2rem;
    background-color: #5c8374;
    position: relative;
    overflow: hidden;
}

#info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/clean-gray-paper.png');
    background-repeat: repeat;
    opacity: 0.3; /* Adjust this value for desired subtlety */
    z-index: 0;
}

.info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 2rem;
    max-width: 1000px; /* Limit width */
    margin-left: auto; /* Center the row */
    margin-right: auto; /* Center the row */
    position: relative;
    z-index: 1;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-row.reverse {
    flex-direction: row-reverse;
}

.info-text {
    flex: 1;
    max-width: 500px;
}

.info-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fac585;
}

.info-text p {
    font-size: 1rem;
    color: #f3dca7;
}

.info-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-image img {
    max-width: 450px;
    width: 100%;
    border: 10px solid rgba(250, 197, 133, 0.1);
    /* border-radius: 0px; */
    border-image: url('https://www.transparenttextures.com/patterns/flowers.png') 30 round;
}


/* General Section Styling */
section {
    padding: 6rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(250, 197, 133, 0.2);
}

section:last-of-type {
    border-bottom: none;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* About Us Section */
#about {
    background: #6d9886;
    position: relative;
    overflow: hidden;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/concrete-wall-2.png');
    background-repeat: repeat;
    opacity: 0.3;
    z-index: 0;
}

#about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* Menu Section */
#menu {
    background: #5c8374;
}

.menu-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.menu-column {
    flex-basis: 45%;
    text-align: left;
}

.menu-column h3 {
    border-bottom: 2px solid #fac585;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.menu-item {
    margin-bottom: 1rem;
}

.menu-item h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.menu-item p {
    margin: 0;
    font-style: italic;
    color: #f3dca7;
}

/* Reservation Section */
#reservation {
    background: #6d9886;
    position: relative;
    overflow: hidden;
}

#reservation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/cross-scratches.png');
    background-repeat: repeat;
    opacity: 0.4;
    z-index: 0;
}

#reservation h2,
#reservation p,
#reservation .btn {
    position: relative;
    z-index: 1;
}

/* Reservation Button */
.btn {
    display: inline-block;
    background: #fac585;
    color: #6d9886;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease, color 0.3s ease;
    margin-top: 1rem;
}

.btn:hover {
    background: #fff;
    color: #6d9886;
}

/* Footer */
footer {
    padding: 4rem 2rem;
    background: #000;
    color: #fff;
    text-align: left;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/connected.png');
    background-color: #fac585;
    background-blend-mode: multiply;
    background-repeat: repeat;
    opacity: 0.2;
    z-index: 0;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    /* gap: 2rem; */
    position: relative;
    z-index: 1;
}

.contact-info {
    flex: 1;
}

.contact-map {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.contact-section {
    margin-bottom: 2rem;
}

.contact-section h3 {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #fff;
}

.contact-section p {
    margin: 0;
    color: #ccc;
}

.hours-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #ccc;
}

.hour-row {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
}

.hour-row .day {
    min-width: 100px;
    font-weight: 600;
}

.hour-row .time {
    flex: 1;
}

.instagram-link .fa-instagram {
    font-size: 30px;
    color: #ccc;
    transition: color 0.3s ease;
}

.instagram-link:hover .fa-instagram {
    color: #fff;
}
.map-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    z-index: 1;
    height: 100%;
}

.map-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/connected.png');
    background-color: #fac585;
    background-blend-mode: multiply;
    background-repeat: repeat;
    opacity: 0.2;
    pointer-events: none; /* Allows map interaction */
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.site-footer {
    padding: 2rem;
    text-align: center;
    background: #000;
    color: #ccc;
}

.footer-logo {
    height: 50px;
    /* margin-bottom: 1rem; */
}

/* Scroll Animation */
.hidden {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, filter 0.6s ease-out, transform 0.6s ease-out;
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .nav-links {
        position: fixed;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: #5c8374;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        overflow: hidden;
        z-index: 999;
        visibility: hidden;
    }
    
    .nav-links.active {
        transform: translateX(0%);
        visibility: visible;
    }

    .nav-links::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('https://www.transparenttextures.com/patterns/arabesque.png');
        background-repeat: repeat;
        opacity: 0.2;
        z-index: 0;
    }


    .nav-links ul {
        flex-direction: column;
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .nav-links ul li {
        margin: 2rem 0;
    }

    .hamburger {
        display: block;
    }

    .hero-text h1 {
        font-size: 1.2rem;
    }

    section {
        padding: 4rem 1rem;
    }

    .menu-column {
        flex-basis: 100%;
        margin-bottom: 2rem;
    }

    .contact-container {
        flex-direction: column;
    }

    .hour-row {
        flex-direction: column;
        gap: 0.2rem;
        margin-bottom: 0.8rem;
    }


    .contact-map {
        height: 300px; /* Give the map a fixed height on mobile */
        margin-top: 2rem; /* Add some space above the map */
    }

    .info-row {
        flex-direction: column !important; /* Stack vertically on mobile */
    }

    .info-text {
        margin-bottom: 2rem; /* Add space between text and image */
    }
}

.swiper-button-next::after,
.swiper-button-prev::after {
    color: #fac585 !important;
}

.swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.8;
}

.swiper-pagination-bullet-active {
    background: #585858;
}
