/* Variables & Reset */
        :root {
            /*--primary: #fff;*/
            --dark: #1e293b;
            --light: #f8fafc;
            --text: #000;
            --transition: all 0.3s ease;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: 'Segoe UI', sans-serif; line-height: 1.6; color: var(--text); background: var(--light); }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        /* Navigation */
        nav {
            background: #000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 10%;
            position: fixed;
            width: 100%;
            top: 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
        }

        .logo { font-size: 1.5rem; font-weight: bold; color: #fff; }
        .nav-links { display: flex; gap: 2rem; color: #fff; }
        .nav-links a:hover { color: #fff; }
        .menu-btn { display: none; cursor: pointer; font-size: 1.5rem; color: #fff; }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;            align-items: center;
            text-align: center;
            /*background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('hero.jpeg?auto=format&fit=crop&w=1350&q=80');*/
	   background: url('hero.jpeg');
            background-size: cover;
            padding: 0 1rem;
        }
/*https://images.unsplash.com/photo-1497215728101-856f4ea42174?auto=format&fit=crop&w=1350&q=80*/
        .hero h1 { font-size: 3.5rem; margin-bottom: 1rem; color: var(--dark); }
        .hero p { font-size: 1.25rem; margin-bottom: 2rem; max-width: 600px; }
        .btn {
            padding: 0.8rem 2rem;            
	background: var(--primary);
	/*background-color: #fff;*/
            border-radius: 5px;
            transition: var(--transition);
        }
        .btn:hover { opacity: 0.9; transform: translateY(-2px); }
	.a btn:hover { opacity: 0.9; transform: translateY(-2px); }
        /* Sections General */
        section { padding: 5rem 10%; }
        .section-title { text-align: center; margin-bottom: 3rem; font-size: 2rem; }

        /* cabins Grid */
        .cabins-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .cabin-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);            transition: var(--transition);
        }

        .cabin-card:hover { transform: translateY(-5px); }
        .cabin-img { height: 200px; background: #ddd; width: 100%; object-fit: cover; }
        .cabin-info { padding: 1.5rem; }

        /* Contact Form */
        .contact-container { max-width: 600px; margin: 0 auto; }
        .form-group { margin-bottom: 1.5rem; }
        input, textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            margin-top: 0.5rem;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: #fff;
            text-align: center;
            padding: 2rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .menu-btn { display: block; }
            .hero h1 { font-size: 2.5rem; }
            section { padding: 3rem 5%; }
        }
    
