:root {
    --color-primary: #494741;
    --color-secondary: #D7D5C7;
    --color-accent: #C4A77D;
    --color-text: #333333;
    --color-background: #FFFFFF;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
}

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

/* Header & Navigation */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav__logo-img {
    height: 50px;
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav__menu a {
    text-decoration: none;
    color: var(--color-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav__menu a:hover {
    color: var(--color-accent);
}

.nav__mobile-btn {
    display: none;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav__menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--color-background);
        padding: 2rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .nav__menu.active {
        display: flex;
    }

    .nav__mobile-btn {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1000;
    }

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

    .nav__mobile-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav__mobile-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .nav__mobile-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero__content {
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    transform: translateX(0);
    text-align: center;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    padding: 0 20px;
    text-align: center;
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn--primary {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

.btn--primary:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
}

.btn--secondary {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

.btn--secondary:hover {
    background-color: var(--color-secondary);
    color: white;
    transform: translateY(-2px);
}

/* Section Styles */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-primary);
    position: relative;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.section-title__line {
    width: 100%;
    max-width: 150px;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.section-title__line-img {
    display: block;
    margin: 0 auto 0.3rem auto;
    max-width: 150px;
    width: 150px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(76,71,65,0.08));
}

section {
    padding: 5rem 0;
}

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

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

.feature {
    text-align: center;
    padding: 2rem;
    background-color: var(--color-secondary);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.feature__icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-primary);
    stroke-width: 1.5;
    fill: none;
    transition: all 0.3s ease;
}

.feature:hover .feature__icon svg {
    stroke: var(--color-accent);
    transform: scale(1.1);
}

.feature h3 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--color-text);
    font-size: 0.9rem;
}

.about__list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.about__list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--color-text);
}

.list-icon {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    fill: var(--color-primary);
    flex-shrink: 0;
}

/* Rooms Section */
.rooms__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.room-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.room-card h3 {
    font-size: 1.5rem;
}

.room-card__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.room-card__content {
    padding: 1.5rem;
}

.room-card__features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.room-card__features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--color-text);
}

.room-card__features li:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    fill: var(--color-primary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

/* Restaurant Section */
.restaurant__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.restaurant__text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.restaurant__image {
    position: relative;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.restaurant__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.restaurant__image:hover img {
    transform: scale(1.05);
}

.restaurant__section {
    margin-bottom: 2.5rem;
}

.restaurant__section h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.restaurant__section p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.restaurant__features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.restaurant__features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--color-text);
}

.restaurant-icon {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    fill: var(--color-primary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.restaurant__features li:hover .restaurant-icon {
    transform: scale(1.1);
}

/* Contact Section */
.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact__info a {
    color: var(--color-accent);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s;
}

.contact__form {
    /* max-width: 350px; */
    margin: 0 auto;
    width: 100%;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--color-secondary);
    border-radius: 4px;
    font-family: var(--font-body);
}

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

.contact__map {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid var(--color-secondary);
    box-shadow: 0 4px 20px rgba(76, 71, 65, 0.08);
}

.contact__map iframe {
    width: 100%;
    height: 250px;
    border: none;
    filter: grayscale(0.2) contrast(1.1) brightness(0.98) sepia(0.15) hue-rotate(-10deg) saturate(1.2);
    /* Subtle color filter for brand feel */
    display: block;
}

/* Footer */
.footer {
    background-color: var(--color-primary);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer__logo {
    text-align: left;
}

.footer__logo img {
    height: 90px;
    filter: brightness(0) invert(1);
    display: block;
    margin-bottom: 0.7rem;
}

.footer__logo-follow {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-size: 1rem;
    color: var(--color-secondary);
    font-family: var(--font-body);
    font-weight: 400;
}

.footer__logo-follow .social-link svg {
    vertical-align: middle;
    display: inline-block;
}

.social-link {
    color: white;
    text-decoration: none;
    margin-right: 1rem;
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__seo {
    color: var(--color-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-weight: 400;
}

.footer__seo a {
    color: var(--color-accent);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s;
}

.footer__seo a:hover {
    color: #b89b6a;
}

.footer__contact {
    color: var(--color-secondary);
    font-size: 0.95rem;
    text-align: right;
    font-family: var(--font-body);
    font-weight: 400;
}

.footer__contact h4 {
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.footer__contact a {
    color: var(--color-accent);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s;
}

.footer__contact a:hover {
    color: #b89b6a;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero__title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
        padding: 0 20px;
    }

    .section-title__line {
        max-width: 150px;
    }

    .section-title__line-img {
        max-width: 150px;
        width: 150px;
        margin-bottom: 0.5rem;
    }

    .feature__icon {
        width: 48px;
        height: 48px;
    }

    .hero__title,
    .section-title {
        padding: 0 70px;
    }

    .about__content,
    .restaurant__content,
    .contact__content {
        grid-template-columns: 1fr;
    }

    .about__features {
        grid-template-columns: 1fr;
    }

    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__content {
        transform: translateX(0);
    }

    .garden__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .garden__image {
        order: -1;
    }

    .about__list li,
    .room-card__features li,
    .garden__features li {
        font-size: 1rem;
    }

    .list-icon,
    .feature-icon,
    .garden-icon {
        width: 20px;
        height: 20px;
    }

    .restaurant__section h3 {
        font-size: 1.3rem;
    }

    .restaurant__features li {
        font-size: 1rem;
    }

    .restaurant-icon {
        width: 20px;
        height: 20px;
    }

    .restaurant__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .restaurant__image {
        height: 300px;
        order: -1;
    }

    .contact__map {
        margin-top: 1.5rem;
        border-radius: 8px;
    }
    .contact__map iframe {
        height: 180px;
    }

    .footer__contact {
        text-align: center;
        margin-top: 2rem;
    }
    .footer__seo {
        font-size: 1rem;
    }
}

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

.hero__content,
.section-title,
.room-card,
.feature {
    animation: fadeIn 1s ease-out;
}

.garden__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.garden__text {
    font-size: 1.1rem;
    line-height: 1.6;
}

.garden__features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.garden__features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--color-text);
}

.garden-icon {
    width: 28px;
    height: 28px;
    margin-right: 1.2rem;
    fill: var(--color-primary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.garden__features li:hover .garden-icon {
    transform: scale(1.1);
}

.garden__image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.garden__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.garden__image:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .garden__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .garden__image {
        order: -1;
        height: 300px;
    }

    .garden__text {
        font-size: 1rem;
    }

    .garden__features li {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .garden-icon {
        width: 20px;
        height: 20px;
        margin-right: 1rem;
    }
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* grid-template-rows: repeat(2, 200px); */
    gap: 1.5rem;
}

.gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery__img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transition: opacity 0.3s;
}

.lightbox.active {
    display: flex;
}

.lightbox__img-wrapper {
    position: relative;
    max-width: 80vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__img {
    max-width: 80vw;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    user-select: none;
}

.lightbox__close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 2.5rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
}

.lightbox__close:hover {
    color: var(--color-accent);
}

.lightbox__nav {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
}

.lightbox__nav--left {
    left: 0;
}

.lightbox__nav--right {
    right: 0;
}

.lightbox__arrow {
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    width: 48px;
    height: 48px;
    pointer-events: none;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.lightbox__arrow--left {
    left: 10%;
}

.lightbox__arrow--right {
    right: 10%;
}

.lightbox__arrow.visible {
    opacity: 1;
    transform: translateY(-50%) scale(1.08);
}

.lightbox__gradient {
    position: absolute;
    top: 0;
    width: 20%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 5;
}

.lightbox__gradient--left {
    left: 0;
    background: linear-gradient(to right, rgba(73,71,65,0.5) 0%, rgba(73,71,65,0) 100%);
}

.lightbox__gradient--right {
    right: 0;
    background: linear-gradient(to left, rgba(73,71,65,0.5) 0%, rgba(73,71,65,0) 100%);
}

.lightbox__arrow.visible + .lightbox__gradient,
.lightbox__gradient.visible {
    opacity: 1;
}

.lightbox__nav--left .lightbox__gradient {
    left: 0;
}
.lightbox__nav--right .lightbox__gradient {
    right: 0;
}

@media (max-width: 900px) {
    .about__content {
        grid-template-columns: 1fr;
    }
    .rooms__grid {
        grid-template-columns: 1fr;
    }
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(6, 150px);
    }
    .contact__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact__form {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .gallery__grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(12, 150px);
    }
    .lightbox__img-wrapper {
        max-width: 98vw;
        max-height: 70vh;
    }
    .lightbox__img {
        max-width: 98vw;
        max-height: 70vh;
    }
    .lightbox__arrow {
        width: 32px;
        height: 32px;
    }
    .lightbox__arrow--left {
        left: 4%;
    }
    .lightbox__arrow--right {
        right: 4%;
    }
}

.list-icon,
.feature-icon,
.garden-icon,
.restaurant-icon,
.room-card__features svg,
.about__features svg,
.garden__features svg,
.restaurant__features svg {
    stroke: var(--color-primary) !important;
    fill: none;
    color: var(--color-secondary) !important;
}

.contact__info h3 {
    margin-bottom: 1rem;
}

.contact__info-row {
    display: flex;
    align-items: flex-start;
    gap: 0.8em;
    margin-bottom: 0.7em;
    line-height: 1.6;
}

.contact-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    margin-top: 2px;
    color: var(--color-secondary);
    fill: var(--color-secondary);
    stroke: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact__info-text {
    display: inline-block;
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.6;
}

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