        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: #333;
            line-height: 1.6;
            background: #f9f9f9;
        }
        
        .brand-font {
            font-family: 'Playfair Display', serif;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Carousel Styles */
        .carousel-container {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 600px;
            overflow: hidden;
        }
        
        .carousel-slides {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
        }
        
        .carousel-slide.active {
            opacity: 1;
        }
        
        .slide-overlay {
            background: rgba(0, 0, 0, 0.5);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .slide-content {
            position: relative;
            z-index: 5;
            color: white;
            max-width: 600px;
            padding: 0 40px;
            margin-left: 10%;
            animation: fadeInUp 1s ease;
        }
        
        .slide-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .slide-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 500px;
        }
        
        .slide-button {
            display: inline-block;
            padding: 15px 30px;
            background: #c9ab75;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .slide-button:hover {
            background: #b8975a;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .carousel-controls {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            z-index: 10;
        }
        
        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            margin: 0 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .carousel-dot.active {
            background: white;
            transform: scale(1.2);
        }
        
        .carousel-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 30px;
            z-index: 10;
            transform: translateY(-50%);
        }
        
        .carousel-nav button {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .carousel-nav button:hover {
            background: rgba(255, 255, 255, 0.4);
        }
        
        /* Availability Form */
        .availability-form {
            background: white;
            border-radius: 10px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            padding: 30px;
            margin-top: -80px;
            position: relative;
            z-index: 20;
        }
        
        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2c3e50;
        }
        
        .form-group input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
        }
        
        .form-group input:focus {
            outline: none;
            border-color: #c9ab75;
            box-shadow: 0 0 0 2px rgba(201, 171, 117, 0.2);
        }
        
        .check-availability {
            background: #2c3e50;
            color: white;
            border: none;
            padding: 15px 25px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }
        
        .check-availability:hover {
            background: #1a252f;
        }
        
        /* Content Sections */
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .divider {
            height: 3px;
            width: 80px;
            background: #c9ab75;
            margin: 15px auto;
        }
        
        /* Posts Grid */
        .posts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .post-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .post-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .post-image {
            height: 200px;
            overflow: hidden;
        }
        
        .post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .post-card:hover .post-image img {
            transform: scale(1.1);
        }
        
        .post-content {
            padding: 20px;
        }
        
        .post-date {
            color: #c9ab75;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .post-title {
            font-size: 1.25rem;
            margin-bottom: 10px;
            color: #2c3e50;
        }
        
        .post-excerpt {
            color: #7f8c8d;
            margin-bottom: 20px;
        }
        
        .read-more {
            color: #c9ab75;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
        }
        
        .read-more i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        
        .read-more:hover i {
            transform: translateX(5px);
        }
        
        /* CTA Section */
        .cta-section {
            background: #2c3e50;
            color: white;
            text-align: center;
            padding: 80px 0;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        
        .btn-primary {
            background: #c9ab75;
            color: white;
            padding: 15px 30px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background: #b8975a;
            transform: translateY(-3px);
        }
        
        .btn-outline {
            border: 2px solid white;
            color: white;
            padding: 13px 28px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-outline:hover {
            background: white;
            color: #2c3e50;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .slide-content h2 {
                font-size: 2.8rem;
            }
            
            .slide-content {
                margin-left: 5%;
            }
        }
        
        @media (max-width: 768px) {
            .carousel-container {
                height: 80vh;
            }
            
            .slide-content h2 {
                font-size: 2.2rem;
            }
            
            .slide-content p {
                font-size: 1rem;
            }
            
            .slide-content {
                text-align: center;
                margin: 0 auto;
            }
            
            .availability-form {
                margin-top: -50px;
            }
            
            .form-grid {
                grid-template-columns: 1fr;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }
        
        @media (max-width: 576px) {
            .slide-content h2 {
                font-size: 1.8rem;
            }
            
            .carousel-nav button {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }
