/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-logo a{
    text-decoration: none;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #3498db;
}

.btn-book {
    background: #3498db;
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    display: flex;
    align-items: center;
    min-height: 80vh;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-content {
    flex: 1;
    padding: 2rem;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: #3498db;
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background: #3498db;
    color: white;
}

.hero-image {
    flex: 1;
    padding: 2rem;
}

.hero-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background-image: url(./images/stunning-mountain.jpg);
}

.placeholder-content {
    text-align: center;
}

.placeholder-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #f8f9fa;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.about-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Rooms Section */
.rooms {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.room-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.room-card:hover {
    transform: translateY(-5px);
}

.room-image {
    height: 200px;
    overflow: hidden;
}

.room-placeholder {
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.room-1 {
    background-image: url(./images/plus-room.jpg) !important;
    background-size: cover;
    background-position: center;
}

.room-2 {
    background-image: url(./images/standard-room.jpg);
    background-size: cover;
    background-position: center;
}

.room-3 {
    background-image: url(./images/shared-bathroom.jpg);
    background-size: cover;
    background-position: center;
}

.room-4 {
    background-image: url(./images/gateway-cabin.jpg);
    background-size: cover;
    background-position: center;
}

.room-5{
    background-image: url(./images/plus-room-2.jpg);
    background-size: cover;
    background-position: center;
}

.room-6{
    background-image: url(./images/standard-room2.jpg);
    background-size: cover;
    background-position: center;
}

.room-7{
    background-image: url(./images/shared-bathroom-2.jpg);
    background-size: cover;
    background-position: center;
}

.room-8{
    background-image: url(./images/gateway-cabin.jpg);
    background-size: cover;
    background-position: center;
}

.room-info {
    padding: 1.5rem;
}

.room-info h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.room-info p {
    color: #666;
    margin-bottom: 1.5rem;
}

.room-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.room-features li {
    color: #666;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.room-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.btn-room {
    background: #3498db;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-room:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Restaurant Section */
.restaurant {
    padding: 5rem 0;
    background: #f8f9fa;
}

.restaurant-image{
    background-image: url(./images/fine-dining-experience.jpg);
        background-size: cover;
    background-position: center;
}

.restaurant-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.restaurant-text {
    flex: 1;
}

.restaurant-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.restaurant-text p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.restaurant-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature h4 {
    color: #3498db;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #666;
    font-size: 0.9rem;
}

.restaurant-image {
    flex: 1;
}

.restaurant-placeholder {
    width: 100%;
    height: 350px;
    /* background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%); */
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Adventures Section */
.adventures {
    padding: 5rem 0;
}

.adventures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.adventure-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.adventure-card:hover {
    transform: translateY(-5px);
}

.adventure-image {
    height: 200px;
    overflow: hidden;
}

.adv-img-1{
    background-image: url(./images/trolltunga-hike.jpg);
            background-size: cover;
    background-position: center;
}

.adv-img-2{
    background-image: url(./images/go-viking.jpg);
            background-size: cover;
    background-position: center;
}

.adv-img-3{
    background-image: url(./images/winter-hike.jpg);
            background-size: cover;
    background-position: center;
}

.adv-img-4{
    background-image: url(./images/fjord-adventure.jpg);
            background-size: cover;
    background-position: center;
}

.adv-img-5{
    background-image: url(./images/trolltunga-hike-2.jpg);
            background-size: cover;
    background-position: center;
}

.adv-img-6{
    background-image: url(./images/autumn-go-viking.jpg);
            background-size: cover;
    background-position: center;
}

.adv-img-7{
    background-image: url(./images/winter-hike-2.jpg);
            background-size: cover;
    background-position: center;
}

.adv-img-8{
    background-image: url(./images/fjord-lake-adventure.jpg);
            background-size: cover;
    background-position: center;
}

.adventure-placeholder {
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, #00b894 0%, #00a085 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.adventure-info {
    padding: 1.5rem;
}

.adventure-info h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.adventure-info p {
    color: #666;
    margin-bottom: 1.5rem;
}

.adventure-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.difficulty {
    color: #e74c3c;
    font-weight: 600;
}

.duration {
    color: #3498db;
    font-weight: 600;
}

/* Info Section */
.info {
    padding: 5rem 0;
    background: #f8f9fa;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-card h3 {
    color: #3498db;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item h4 {
    color: #3498db;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
}

.contact-form h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #3498db;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .restaurant-content {
        flex-direction: column;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .adventures-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .restaurant-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 250px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.room-card,
.adventure-card,
.info-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover effects */
.room-card:hover .room-placeholder,
.adventure-card:hover .adventure-placeholder {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Form validation styles */
.form-group input:invalid,
.form-group textarea:invalid {
    border-color: #e74c3c;
}

.form-group input:valid,
.form-group textarea:valid {
    border-color: #27ae60;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for keyboard navigation */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* Additional styles for enhanced functionality */

/* Progress bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    z-index: 10000;
    transition: width 0.1s ease;
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Weather widget */
.weather-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(52, 152, 219, 0.9);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 1000;
    font-size: 0.9rem;
    animation: slideInLeft 0.5s ease;
}

.weather-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.weather-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.temperature {
    font-size: 1.2rem;
    font-weight: 700;
}

.condition {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Notification styles */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #3498db;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 350px;
    min-width: 250px;
}

.notification-error {
    background: #e74c3c;
}

.notification-success {
    background: #27ae60;
}

.notification-info {
    background: #3498db;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.notification-message {
    flex: 1;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.notification-close:hover {
    background: rgba(255,255,255,0.2);
}

/* Enhanced button styles */
.btn-primary:active,
.btn-secondary:active,
.btn-room:active,
.btn-book:active {
    transform: translateY(0);
}

.btn-primary:disabled,
.btn-secondary:disabled,
.btn-room:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Loading spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s ease-in-out infinite;
    margin-right: 0.5rem;
}

/* Enhanced form styles */
.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #333;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    max-height: 200px;
}

/* Floating labels */
.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 0.25rem;
    font-size: 1rem;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]) + label {
    top: -0.5rem;
    left: 0.75rem;
    font-size: 0.75rem;
    color: #3498db;
    font-weight: 600;
}

/* Select dropdown styling */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
}

.form-group select option {
    padding: 0.5rem;
}

/* Date inputs */
.date-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.date-group {
    position: relative;
}

.date-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.date-group label {
    position: absolute;
    top: -0.5rem;
    left: 0.75rem;
    font-size: 0.75rem;
    color: #3498db;
    font-weight: 600;
    background: white;
    padding: 0 0.25rem;
}

/* Guest counter */
.guest-counter {
    background: white;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 1rem;
    transition: border-color 0.3s ease;
}

.guest-counter:focus-within {
    border-color: #3498db;
}

.guest-counter > label {
    display: block;
    color: #3498db;
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.counter-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.counter-controls:last-child {
    margin-bottom: 0;
}

.counter-btn {
    width: 35px;
    height: 35px;
    border: 2px solid #3498db;
    background: white;
    color: #3498db;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-btn:hover:not(:disabled) {
    background: #3498db;
    color: white;
    transform: scale(1.1);
}

.counter-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.counter-display {
    font-weight: 600;
    color: #2c3e50;
    min-width: 100px;
    text-align: center;
}

/* Character counter */
.character-count {
    position: absolute;
    bottom: 0.5rem;
    right: 1rem;
    font-size: 0.75rem;
    color: #999;
    background: white;
    padding: 0 0.25rem;
}

.character-count.warning {
    color: #f39c12;
}

.character-count.error {
    color: #e74c3c;
}

/* Checkbox styling */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    min-width: 18px;
    height: 18px;
    accent-color: #3498db;
    cursor: pointer;
}

.checkbox-label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    cursor: pointer;
    user-select: none;
}

.checkbox-label a {
    color: #3498db;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Form actions */
.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.form-actions .btn-secondary {
    flex: 1;
    min-width: 120px;
}

.form-actions .btn-primary {
    flex: 2;
    min-width: 140px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-text {
    transition: opacity 0.3s ease;
}

.loading .btn-text {
    opacity: 0;
}

.loading .loading-spinner {
    display: block !important;
    position: absolute;
}

/* Form footer */
.form-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    text-align: center;
}

.response-time {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.contact-alternative {
    color: #666;
    font-size: 0.9rem;
}

.contact-alternative a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.contact-alternative a:hover {
    text-decoration: underline;
}

/* Error states */
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
}

.form-group input.success,
.form-group textarea.success,
.form-group select.success {
    border-color: #27ae60;
    background: rgba(39, 174, 96, 0.05);
}

.error-message {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: none;
    padding-left: 1rem;
}

.error-message.show {
    display: block;
    animation: slideInUp 0.3s ease;
}

.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
    border-color: #e74c3c;
}

.form-group.has-error label {
    color: #e74c3c;
}

.form-group.has-success input,
.form-group.has-success textarea,
.form-group.has-success select {
    border-color: #27ae60;
}

.form-group.has-success label {
    color: #27ae60;
}

/* Form validation icons */
.form-group.has-error::after {
    content: '✕';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #e74c3c;
    font-weight: bold;
    pointer-events: none;
}

.form-group.has-success::after {
    content: '✓';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #27ae60;
    font-weight: bold;
    pointer-events: none;
}

/* Adjust for textarea */
.form-group.has-error textarea ~ .error-message::before,
.form-group.has-success textarea ~ .error-message::before {
    top: 1rem;
}

/* Mobile form adjustments */
@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
        margin: 0 -10px;
        border-radius: 10px;
    }
    
    .date-inputs {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn-secondary,
    .form-actions .btn-primary {
        width: 100%;
        flex: none;
    }
    
    .counter-controls {
        padding: 0 0.5rem;
    }
    
    .guest-counter {
        padding: 0.75rem;
    }

    .mobile-menu-btn{
    display: flex !important;
    padding: 5px;
        border: none;
}
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1rem;
    }
    
    .counter-btn {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .counter-display {
        min-width: 80px;
        font-size: 0.9rem;
    }
    
    .checkbox-group {
        align-items: center;
    }
    
    .checkbox-label {
        font-size: 0.85rem;
    }
}

/* Mobile menu enhanced styles */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Enhanced card hover effects */
.room-card::before,
.adventure-card::before,
.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.room-card:hover::before,
.adventure-card:hover::before,
.info-card:hover::before {
    opacity: 1;
}

.room-card,
.adventure-card,
.info-card {
    position: relative;
    overflow: hidden;
}

/* Shimmer animation for loading placeholders */
@keyframes shimmer {
    0% { 
        background-position: -200% 0; 
    }
    100% { 
        background-position: 200% 0; 
    }
}

.loading-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Slide animations */
@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #ffffff;
        --text-color: #e0e0e0;
        --card-bg: #ffffff;
        --border-color: #404040;
    }
    
    body {
        background-color: var(--bg-color);
        color: var(--text-color);
    }
    
    .navbar {
        background: rgba(255, 255, 255, 0.95);
    }
    
    .room-card,
    .adventure-card,
    .info-card,
    .contact-form {
        background: var(--card-bg);
        border: 1px solid var(--border-color);
    }
    
    .form-group input,
    .form-group textarea {
        background: var(--card-bg);
        border-color: var(--border-color);
        color: var(--text-color);
    }
    
    .about {
        background: #ffffff;
    }
    
    .info {
        background: #ffffff;
    }
    
    .restaurant {
        background: #ffffff;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    * {
        border-color: #000 !important;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-room,
    .btn-book {
        border: 2px solid #000;
    }
    
    .room-card,
    .adventure-card,
    .info-card {
        border: 2px solid #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .loading-shimmer {
        animation: none;
        background: #f0f0f0;
    }
}

/* Enhanced responsive design */
@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .restaurant-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem 0;
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .weather-widget {
        bottom: 80px;
        left: 10px;
        right: 10px;
        text-align: center;
    }
    
    .scroll-to-top {
        bottom: 10px;
        right: 10px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .notification {
        top: 80px;
        left: 10px;
        right: 10px;
        max-width: none;
        transform: translateY(-100%);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
}

/* Very small screens */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .room-card,
    .adventure-card,
    .info-card {
        margin: 0 -10px;
        border-radius: 0;
    }
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .scroll-to-top,
    .weather-widget,
    .notification,
    .progress-bar {
        display: none !important;
    }
    
    .hero {
        margin-top: 0;
        break-inside: avoid;
    }
    
    .room-card,
    .adventure-card,
    .info-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-room {
        border: 1px solid #ccc !important;
        background: white !important;
        color: black !important;
    }
    
    .hero-placeholder,
    .room-placeholder,
    .adventure-placeholder,
    .restaurant-placeholder {
        background: #f0f0f0 !important;
        color: black !important;
    }
    
    .contact-form {
        border: 1px solid #ccc;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }
    
    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }
}

/* Focus styles for better accessibility */
*:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* Skip to content link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #3498db;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
}

.skip-link:focus {
    top: 6px;
}

/* Enhanced loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #3498db;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

/* Utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

.hidden { display: none; }
.visible { display: block; }

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

.slide-in-up {
    animation: slideInUp 0.6s ease-out;
}


        .form-container {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            width: 100%;
            max-width: 500px;
        }

        .form-title {
            text-align: center;
            color: #2c3e50;
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

        .form-subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        label {
            display: block;
            margin-bottom: 0.5rem;
            color: #2c3e50;
            font-weight: 600;
            font-size: 0.9rem;
        }

        input, select, textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
            font-family: inherit;
        }

        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
        }

        textarea {
            resize: vertical;
            min-height: 100px;
        }

        select {
            cursor: pointer;
        }

        .required {
            color: #e74c3c;
        }

        .btn-submit {
            width: 100%;
            background: #3498db;
            color: white;
            padding: 1rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }

        .btn-submit:hover {
            background: #2980b9;
            transform: translateY(-2px);
        }

        .btn-submit:active {
            transform: translateY(0);
        }

        .form-footer {
            text-align: center;
            margin-top: 1.5rem;
            padding-top: 1rem;
            border-top: 1px solid #eee;
            font-size: 0.85rem;
            color: #666;
        }

        .contact-info {
            margin-top: 0.5rem;
        }

        .contact-info a {
            color: #3498db;
            text-decoration: none;
        }

        .contact-info a:hover {
            text-decoration: underline;
        }

        .error {
            border-color: #e74c3c !important;
            background-color: rgba(231, 76, 60, 0.05);
        }

        .success-message {
            background: #d4edda;
            color: #155724;
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            text-align: center;
            display: none;
        }

        .error-message {
            background: #f8d7da;
            color: #721c24;
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            text-align: center;
            display: none;
        }

        @media (max-width: 600px) {
            .form-container {
                padding: 1.5rem;
                margin: 10px;
            }
            
            .form-title {
                font-size: 1.5rem;
            }
            
            input, select, textarea {
                padding: 0.8rem;
            }}

                            .p-container{
color: #000;
    padding: 100px 50px;
}

.mobile-menu-btn{
    display: none;
}