@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --forest-green: #1A3C34;
    --mist-white: #F8F9FA;
    --earthy-wood: #8B5E3C;
    --accent-gold: #D4AF37;
    --text-dark: #2D2D2D;
    --glass-bg: rgba(255, 255, 255, 0.85);
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--mist-white);
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
.premium-serif {
    font-family: 'Playfair Display', serif;
}

/* Navbar */
.navbar {
    background: transparent;
    transition: all 0.3s ease;
    padding: 20px 0;
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--forest-green) !important;
}

.nav-link {
    font-weight: 600;
    color: var(--forest-green) !important;
    margin: 0 15px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../img/mathews_cottage_hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
}

.hero-content p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.8s;
}

/* Booking Bar */
.booking-bar {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.btn-premium {
    background: var(--forest-green);
    color: white;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
}

.btn-premium:hover {
    background: var(--accent-gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Section Styling */
.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background: var(--accent-gold);
    bottom: -10px;
    left: 0;
}

/* Cards */
.room-card {
    border-radius: 20px;
    overflow: hidden;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.room-card:hover {
    transform: scale(1.03);
}

.room-img-container {
    height: 250px;
    overflow: hidden;
}

.room-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Landmark Cards */
.landmark-card {
    border: none;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
}

.landmark-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.landmark-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    position: relative;
    margin-top: 30px;
}

.testimonial-card i.fa-quote-left {
    position: absolute;
    top: -15px;
    left: 40px;
    font-size: 2rem;
    color: var(--accent-gold);
    background: var(--mist-white);
    padding: 0 10px;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Styling */
.premium-footer {
    background-color: var(--forest-green);
    color: white;
}

.premium-footer .footer-text-muted {
    color: rgba(255, 255, 255, 0.75) !important;
}

.premium-footer a.footer-link {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
    text-decoration: none;
}

.premium-footer a.footer-link:hover {
    color: var(--accent-gold);
}

.premium-footer hr {
    opacity: 0.1;
}

.premium-footer .btn-social {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
}

.premium-footer .btn-social:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .booking-bar {
        margin: -30px 15px 0;
        padding: 20px;
    }
}