/* Global Styles */
:root {
    --primary-color: #3E2723;
    /* Deep Coffee Brown */
    --primary-light: #5D4037;
    /* Lighter Brown */

    --accent-color: #FFCCBC;
    /* Soft Peach */
    --accent-dark: #FFAB91;
    /* Darker Peach */
    --accent-light: #FFF8F0;
    /* Very light peach/cream for backgrounds */

    --bg-color: #FFFCF9;
    /* Off-white with peach tint */
    --white: #ffffff;

    --text-color: #3E2723;
    /* Dark Brown for main text */
    --text-light: #6D4C41;
    /* Muted Brown for secondary text */

    --border-color: #FBE9E7;
    /* Very light peach border */

    --border-radius: 16px;
    --box-shadow: 0 15px 40px rgba(62, 39, 35, 0.08);
    /* Brown-tinted shadow */
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.7;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1.2rem;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: clamp(60px, 10vw, 120px) 0;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 0;
    /* Square/Classic luxury look */
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--accent-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--accent-light);
}

.btn-white {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
}

.btn-white:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Header & Navigation */
header {
    background-color: rgba(255, 252, 249, 0.95);
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: var(--primary-light);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-dark);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-wrapper {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(62, 39, 35, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 5.5rem;
    color: #FFF8F0;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    font-weight: 400;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--accent-color);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Booking Bar (Integrated style) */
.booking-bar-wrapper {
    margin-top: 50px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.booking-form {
    display: flex;
    gap: 20px;
    align-items: center;
}

.input-group label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 5px;
    font-weight: 600;
}

.input-group input,
.input-group select {
    border: none;
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-color);
    background: transparent;
    width: 160px;
    outline: none;
}

.input-group input:focus,
.input-group select:focus {
    border-bottom-color: var(--primary-color);
}

/* Cards & Layouts */
.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title span {
    display: block;
    color: var(--accent-hover);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--primary-color);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--accent-color);
}

.feature-img {
    height: 350px;
    width: 100%;
    overflow: hidden;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.feature-card:hover .feature-img img {
    transform: scale(1.1);
}

.feature-content {
    padding: 35px;
    text-align: center;
}

.feature-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.feature-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

/* Redesigned About Section */
.about-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    padding: 60px 0;
}

.about-image {
    width: 60%;
    position: relative;
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
    /* Subtle radius */
    box-shadow: 20px 20px 0 rgba(62, 39, 35, 0.05);
    /* Very subtle shadow */
}

.about-content-card {
    width: 45%;
    background: var(--white);
    padding: 60px;
    margin-left: -10%;
    /* Overlap effect */
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    /* Soft floating shadow */
    border-top: 5px solid var(--accent-color);
}

.sub-heading {
    color: var(--accent-dark);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.about-content-card h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    line-height: 1.1;
}

.about-content-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 35px;
    line-height: 1.8;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--accent-light);
    padding: 100px 0 40px;
    border-top: 10px solid var(--accent-color);
}

.footer-brand h2 {
    color: var(--accent-color);
}

.footer-col h4 {
    color: var(--white);
    letter-spacing: 1px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col a:hover {
    color: var(--accent-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1024px) {

    /* About Section Mobile */
    .about-wrapper {
        flex-direction: column;
        padding: 0;
    }

    .about-image {
        width: 100%;
        margin-bottom: -40px;
        /* Overlap vertically */
    }

    .about-image img {
        height: 350px;
    }

    .about-content-card {
        width: 90%;
        margin-left: 0;
        margin: 0 auto;
        padding: 40px 30px;
        text-align: center;
    }

    .about-content-card h2 {
        font-size: 2.5rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .booking-bar-wrapper {
        width: 100%;
    }

    .booking-form {
        flex-direction: column;
    }

    .input-group input,
    .input-group select {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}