/* Global Styles */
:root {
    --gold: #d4af37;
    --dark: #0a0803;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --text-dark: #333333;
    --text-light: #ffffff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    height: 100%;
}

body {
    font-family: 'Cinzel', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    height: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn:hover {
    background-color: var(--dark);
    color: var(--gold);
    transform: translateY(-3px);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: var(--gold);
    margin: 0 auto;
}

section {
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Section styling */


/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 8, 3, 0.9);
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.logo h1 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: -5px;
    white-space: nowrap;   /* Prevents text wrapping */
    overflow: hidden;      /* Hides overflowing text */
    text-overflow: ellipsis;
}

.logo h2 {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 0px;
    white-space: nowrap;   /* Prevents text wrapping */
    overflow: hidden;      /* Hides overflowing text */
    text-overflow: ellipsis;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
    white-space: nowrap;   /* Prevents text wrapping */
    overflow: hidden;      /* Hides overflowing text */
    text-overflow: ellipsis;
}

nav ul li a {
    color: var(--white);
    font-weight: 400;
    position: relative;
}

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

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

nav ul li a.active {
    color: var(--gold);
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--gold);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(10, 8, 3, 0.4), rgba(10, 8, 3, 0.4)), url('../images/frontpage_background.jpeg');
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    object-fit: contain;
    color: var(--white);
    margin-top: 0;
    padding-top: 50px;
    position: relative;
    min-height: 100vh;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-top: 300px;
    margin-bottom: 20px;
    color: var(--white);
    white-space: nowrap;   /* Prevents text wrapping */
    overflow: hidden;      /* Hides overflowing text */
    text-overflow: ellipsis;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.booking-btn {
    font-size: 1.1rem;
}

/* About Section */
.about {
    background-color: var(--light-gray);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Location Section */
.location {
    background-color: var(--white);
}

.map-container {
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

#map {
    height: 100%;
    width: 100%;
}

/* Contact Section */
.contact {
    background-color: var(--light-gray);
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info, .contact-form {
    flex: 1;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
    overflow: hidden; 
}

.info-item i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 20px;
}

/* Hours Section */
.hours {
    background-color: var(--white);
}

.hours-content {
    max-width: 600px;
    margin: 0 auto;
}

.hours-table {
    width: 100%;
    background-color: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hours-row {
    display: flex;
    padding: 15px 30px;
    border-bottom: 1px solid var(--medium-gray);
}

.hours-row:last-child {
    border-bottom: none;
}

.day {
    flex: 1;
    font-weight: 500;
}

.time {
    flex: 1;
    text-align: right;
}

/* Gift Voucher Section */
.gift-voucher {
    background: linear-gradient(rgba(10, 8, 3, 0.4), rgba(10, 8, 3, 0.4)), url('../images/spa.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.gift-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.gift-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.voucher-btn {
    background-color: var(--white);
    color: var(--dark);
}

.voucher-btn:hover {
    background-color: var(--gold);
    color: var(--dark);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
    min-height: 100vh;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
}

.footer-logo h3 {
    color: var(--gold);
    margin-bottom: 10px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a:hover {
    color: var(--gold);
}



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

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--dark);
        flex-direction: column;
        padding: 20px 0;
        text-align: center;
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hours-row {
        padding: 12px 20px;
    }
}

@media screen and (max-width: 576px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .gift-content h2 {
        font-size: 1.8rem;
    }
    
    .gift-content p {
        font-size: 1rem;
    }
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}
  
.form-label {
    display: block;
    margin-bottom: 1rem;
}

.label-text {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
  
.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
}

.form-textarea {
    resize: vertical;
}

.form-actions {
    margin-top: 1.5rem;
    text-align: right;
}
  
.btn-submit {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-submit:hover {
    background-color: var(--dark);
    color: var(--gold);
    transform: translateY(-3px);
}