/* Global Styles and Variables */
:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bc62;
    --accent-color: #4a7c59;
    --gold-accent: #c5a572;
    --dark-green: #1e3f20;
    --light-gray: #f7f8fa;
    --text-color: #333333;
    --gradient-primary: linear-gradient(135deg, #2c5f2d 0%, #4a7c59 100%);
    --gradient-secondary: linear-gradient(135deg, #97bc62 0%, #b4d686 100%);
    --gradient-gold: linear-gradient(135deg, #c5a572 0%, #d4b896 100%);
    --shadow-sm: 0 2px 6px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
    --shadow-xl: 0 12px 36px rgba(0,0,0,0.20);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    color: var(--dark-green);
}

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

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(15px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: white;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-size: 1.9rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
}

.brand-tagline {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 400;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

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

.nav-link.book-now {
    background: var(--gradient-primary);
    color: white;
    padding: 0.65rem 1.75rem;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.nav-link.book-now:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(44,95,45,0.3) 0%, rgba(44,95,45,0.5) 100%);
    z-index: 1;
}

.hero-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2c5f2d 0%, #4a7c59 50%, #97bc62 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    text-align: center;
    padding: 2rem;
    opacity: 0.95;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    text-shadow: 2px 3px 6px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    font-family: 'Raleway', sans-serif;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 1.1rem 2.2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--gradient-gold);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 1s ease forwards;
}

.fade-in:nth-child(2) {
    animation-delay: 0.2s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-color);
    font-weight: 300;
    font-family: 'Raleway', sans-serif;
}

/* About Section */
.about {
    padding: 5.5rem 0;
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.3rem;
}

.about-text p {
    margin-bottom: 1.8rem;
    line-height: 1.8;
    color: #555;
}

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

.feature {
    text-align: center;
    padding: 1rem;
}

.feature-icon {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
    display: block;
}

.feature h4 {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature p {
    font-size: 0.9rem;
    color: #666;
}

.about-image {
    position: relative;
}

.image-placeholder {
    background: var(--gradient-primary);
    padding: 2rem;
    border-radius: 12px;
    color: white;
    text-align: center;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Rooms Section */
.rooms {
    padding: 5.5rem 0;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.room-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.room-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.room-image .image-placeholder {
    height: 100%;
    min-height: auto;
    border-radius: 0;
}

.room-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-gold);
    color: white;
    padding: 0.5rem 1.3rem;
    border-radius: 22px;
    font-size: 0.85rem;
    font-weight: 600;
}

.room-content {
    padding: 2.2rem;
}

.room-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.room-description {
    margin-bottom: 1.8rem;
    line-height: 1.7;
    color: #555;
}

.room-features {
    list-style: none;
    margin-bottom: 1.8rem;
}

.room-features li {
    padding: 0.6rem 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.room-features li:last-child {
    border-bottom: none;
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.8rem;
    border-top: 1px solid #eee;
}

.room-price {
    font-size: 0.9rem;
    color: #666;
}

.room-price span {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-accent);
}

.btn-room {
    background: var(--gradient-primary);
    color: white;
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
}

.btn-room:hover {
    background: var(--gradient-secondary);
}

/* Amenities Section */
.amenities {
    padding: 5.5rem 0;
    background: var(--light-gray);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.amenity-card {
    background: white;
    padding: 2.3rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.amenity-icon {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
    display: block;
}

.amenity-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.amenity-card p {
    color: #666;
    line-height: 1.6;
}

/* Location Section */
.location {
    padding: 5.5rem 0;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.location-info h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.3rem;
}

.location-info p {
    margin-bottom: 2.2rem;
    line-height: 1.8;
    color: #555;
}

.distances h4 {
    font-size: 1.4rem;
    margin-bottom: 1.3rem;
    color: var(--dark-green);
}

.distance-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.distance-list li {
    padding: 0.9rem 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    transition: var(--transition);
}

.distance-list li:hover {
    padding-left: 0.8rem;
    background: #fafafa;
}

.distance-icon {
    font-size: 1.6rem;
    margin-right: 1.2rem;
}

.distance-list strong {
    color: var(--gold-accent);
}

.location-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
}

.location-feature {
    background: white;
    padding: 1.8rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.location-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: var(--primary-color);
}

.location-feature p {
    color: #666;
    font-size: 0.95rem;
}

.map-placeholder {
    background: var(--gradient-primary);
    height: 420px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-bottom: 1.3rem;
    box-shadow: var(--shadow-lg);
}

.btn-directions {
    background: var(--gradient-gold);
    color: white;
    display: block;
    text-align: center;
    width: 100%;
    box-shadow: var(--shadow-md);
}

/* Contact Section */
.contact {
    padding: 5.5rem 0;
    background: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3.5rem;
}

.contact-form {
    background: white;
    padding: 2.8rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.3rem;
    margin-bottom: 1.3rem;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--dark-green);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: inherit;
    transition: var(--transition);
    font-size: 0.95rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(151,188,98,0.1);
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    font-size: 1rem;
    background: var(--gradient-primary);
    box-shadow: var(--shadow-md);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-notification {
    margin-top: 1.3rem;
    padding: 1.1rem;
    border-radius: 6px;
    text-align: center;
    display: none;
    font-weight: 500;
}

.form-notification.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-notification.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.8rem;
    color: var(--primary-color);
}

.info-item {
    display: flex;
    margin-bottom: 1.8rem;
    align-items: start;
}

.info-icon {
    font-size: 1.6rem;
    margin-right: 1.2rem;
    margin-top: 0.2rem;
}

.info-item strong {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--dark-green);
    font-size: 1.05rem;
}

.info-item p {
    color: #666;
    line-height: 1.6;
}

.info-item a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.info-item a:hover {
    text-decoration: underline;
}

.contact-cta {
    background: white;
    padding: 2.2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 2.2rem;
    box-shadow: var(--shadow-md);
}

.contact-cta h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-cta p {
    margin-bottom: 1.3rem;
    color: #666;
}

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

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1.3rem;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.7;
    color: #d0d0d0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.3rem;
}

.footer-social a {
    font-size: 1.6rem;
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.8;
}

.footer-social a:hover {
    transform: translateY(-3px);
    opacity: 1;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #d0d0d0;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

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

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
}

.btn-newsletter {
    background: var(--gradient-gold);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.btn-newsletter:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.newsletter-note {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin-top: 0.5rem;
}

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

.footer-bottom a {
    color: #d0d0d0;
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer-bottom a:hover {
    color: var(--gold-accent);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 75px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-xl);
    }

    .nav-menu.active {
        right: 0;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 2.3rem;
    }

    .about-content,
    .location-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1.3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.3rem;
    }

    .nav-brand h1 {
        font-size: 1.5rem;
    }

    .rooms-grid,
    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .location-features {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.9rem;
    }
}

/* Animation for scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Premium touches */
.premium-border {
    position: relative;
}

.premium-border::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
}

/* Loading states */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}