/* Base Styles */
:root {
    --primary: #0a1a15;
    --secondary: #e67e22;
    --accent: #d35400;
    --light: #586060;
    --dark: #000a08;
    --text: #333;
    --text-light: #666;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
    font-size: 1.32em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--secondary);
    text-align: center;
}

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

a:hover {
    color: inherit;
}

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

.container {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
    background-color: #1a1a1a;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    text-align: center;
    color: var(--secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--secondary);
    color: black;
    position: relative;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.btn-primary:hover::after {
    width: 100%;
}

.btn-secondary {
    background-color: var(--primary);
    color: white;
    margin-left: 1rem;
}

.btn-secondary:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-small {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.header .logo {
    opacity: 0;
}

.header.scrolled {
    background-color: #1a1a1a;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.header.scrolled .logo {
    opacity: 1;
    color: var(--secondary);
}

.header.scrolled .nav-links a {
    color: var(--secondary);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.logo:hover::after {
    width: 100%;
}

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

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

.nav-links a {
    color: var(--secondary);
    font-weight: 500;
    position: relative;
}

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

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

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--secondary);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('../images/imageshero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 200px;
}

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

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

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Food & Drink Section */
.food-serving-times {
    background: transparent;
    border: 2px solid var(--secondary);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.food-serving-times h3 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.food-serving-times ul {
    list-style: none;
    padding: 0;
}

.food-serving-times li {
    padding: 0.5rem 0;
    color: var(--secondary);
    border-bottom: 1px solid #eee;
    text-align: center;
}

.food-serving-times li:last-child {
    border-bottom: none;
}

.bar-hours {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--secondary);
    font-size: 1.1rem;
}

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

.food-card {
    background: transparent;
    border: 2px solid var(--secondary);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.food-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.food-img {
    height: 400px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.food-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--secondary);
    text-align: center;
}

.food-card p {
    padding: 0 1.5rem 1.5rem;
    color: white;
    text-align: center;
}

/* Rooms Section */
.bg-light {
    background-color: #1a1a1a;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.room-card {
    background: transparent;
    border: 2px solid var(--secondary);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.room-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.room-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--secondary);
}

.room-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--secondary);
}

.room-card .btn {
    margin: 0 1.5rem 1.5rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.about-content {
    text-align: center;
}

.about-content .features {
    color: var(--secondary);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-info .contact-item p {
    color: var(--secondary);
    text-align: center;
}

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

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-item i {
    color: var(--secondary);
    margin-right: 1rem;
    margin-top: 0.3rem;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--secondary);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 160, 94, 0.2);
}

.contact-form button {
    display: block;
    margin: 0 auto;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 5rem 0 2rem;
    margin-top: 0;
}

.footer a {
    color: var(--secondary);
    transition: var(--transition);
}

.footer a:hover {
    color: white;
    text-decoration: none;
}

.footer-about h3 {
    color: var(--secondary) !important;
}

.footer h4 {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-about p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    text-align: center;
}

.footer-links ul,
.footer-hours ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-hours li,
.footer-hours span {
    color: var(--secondary);
}

.footer-hours span {
    font-weight: 500;
    display: inline-block;
    min-width: 120px;
}

.footer-hours ul {
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.legal-links a {
    font-size: 0.9rem;
    opacity: 0.8;
}

.legal-links a:hover {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer h3 {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary);
}

.footer p {
    margin-bottom: 1rem;
    color: var(--secondary);
}

.footer-links {
    list-style: none;
    text-align: center;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--secondary);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--secondary);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-img {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 1.5rem 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .section {
        padding: 4rem 0;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 600px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-secondary {
        margin-left: 0;
    }
    
    .food-grid,
    .rooms-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

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

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-close:hover {
    color: var(--secondary);
}

/* Lightbox Carousel Arrows */
.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-arrow:hover {
    background-color: var(--secondary);
    color: black;
}

.lightbox-arrow-left {
    left: 20px;
}

.lightbox-arrow-right {
    right: 20px;
}

.food-img {
    cursor: pointer;
    transition: var(--transition);
}

.food-img:not(.carousel-container):hover {
    opacity: 0.8;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    height: 400px;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    z-index: 10;
}

.carousel-arrow:hover {
    background-color: var(--secondary);
    color: black;
}

.carousel-arrow-left {
    left: 10px;
}

.carousel-arrow-right {
    right: 10px;
}

.carousel-slide {
    width: 100%;
    height: 100%;
}

.food-img-inner {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
}

/* Multi-image grid layout */
.multi-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    width: 100%;
    height: 400px;
}

/* Seven column grid for Rooms */
.seven-col-grid {
    display: flex;
    flex-direction: column;
    height: 500px;
    gap: 5px;
}

.seven-col-grid .multi-image-item {
    flex: 1;
    min-width: 0;
}

.seven-col-grid .multi-image-item:nth-child(1),
.seven-col-grid .multi-image-item:nth-child(2),
.seven-col-grid .multi-image-item:nth-child(3),
.seven-col-grid .multi-image-item:nth-child(4) {
    display: flex;
    flex: 1;
}

.seven-col-grid .top-row {
    display: flex;
    gap: 5px;
    flex: 1;
}

.seven-col-grid .bottom-row {
    display: flex;
    gap: 5px;
    flex: 1;
}

.seven-col-grid .bottom-row .multi-image-item {
    flex: 1;
}

/* Three column grid for Garden photos */
.three-col-grid {
    grid-template-columns: repeat(3, 1fr);
    height: 300px;
    gap: 0;
}

.multi-image-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: var(--transition);
}

.multi-image-item:hover {
    opacity: 0.8;
}

.food-card.full-width {
    grid-column: 1 / -1;
}

/* Four column grid for specific cards */
.four-column-grid {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 3rem;
}

@media (max-width: 1200px) {
    .four-column-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .four-column-grid {
        grid-template-columns: 1fr;
    }
}

/* Two column grid for Garden and Gift Vouchers */
.two-column-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 3rem;
}

/* Two column grid for multi-image items (like Restaurant) */
.multi-image-grid.two-col-grid {
    grid-template-columns: repeat(2, 1fr);
    height: 400px;
    gap: 0;
}

@media (max-width: 768px) {
    .two-column-grid {
        grid-template-columns: 1fr;
    }
    
    .multi-image-grid.two-col-grid {
        grid-template-columns: 1fr;
        height: 300px;
    }
}

/* Live Entertainment Section */
.live-entertainment-section {
    background: transparent;
    border: 2px solid var(--secondary);
    border-radius: 10px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.live-entertainment-section h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.live-entertainment-section p {
    color: white;
    font-size: 1.1rem;
}

.live-entertainment-section a {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: underline;
}

.live-entertainment-section a:hover {
    color: var(--accent);
}
