/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('images/Hero.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-content {
    z-index: 1;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 16px 48px;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Section Styles */
section {
    padding: 80px 0;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #222;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.lead {
    font-size: 1.2rem;
    text-align: center;
    color: #555;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Concept Section */
.concept {
    background: #f8f9fa;
}

.concept-text {
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

.concept-text p {
    margin-bottom: 1rem;
}

/* Why Bohinj Section */
.why-bohinj {
    background: #fff;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.photo-gallery img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-gallery img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

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

.benefit {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefit h3 {
    color: #222;
    margin-bottom: 1rem;
}

.logic-section {
    margin-top: 4rem;
    padding: 4rem 3rem;
    background: #333;
    border-radius: 12px;
    color: #fff;
}

.logic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 4rem;
}

.logic-item {
    padding: 0;
}

.logic-item h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.logic-item p {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    line-height: 1.7;
}

/* Program Section */
.program {
    background: #f8f9fa;
}

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

.day {
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid #666;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.day h3 {
    color: #222;
    margin-bottom: 1rem;
}

.day .time {
    font-weight: 600;
    color: #555;
    margin-top: 1rem;
}

.day .resort {
    color: #444;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 0.5rem;
}

/* Accommodation Section */
.accommodation {
    background: #fff;
}

.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.accommodation-item {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accommodation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.accommodation-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.accommodation-item h3,
.accommodation-item ul {
    padding: 0 2rem;
}

.accommodation-item h3 {
    padding-top: 1.5rem;
}

.accommodation-item ul {
    padding-bottom: 2rem;
}

.accommodation-item ul {
    list-style: none;
    margin-top: 1rem;
}

.accommodation-item li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.accommodation-item li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4A90E2;
    font-weight: bold;
}

/* Prices Section */
.prices {
    background: #f8f9fa;
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.price-card {
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #e0e0e0;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #666;
}

.price-number {
    font-size: 3rem;
    font-weight: 300;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.price-card h3 {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
    text-transform: lowercase;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
}

.price-note {
    text-align: center;
    margin-top: 1rem;
    color: #666;
}

/* Notes Section */
.notes {
    background: #fff;
}

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

.note {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-top: 3px solid #666;
}

.note p {
    margin-top: 0.5rem;
    line-height: 1.7;
}

/* FAQ Section */
.faq {
    background: #f8f9fa;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Booking Section */
.booking {
    background: #333;
    color: #fff;
}

.booking h2 {
    color: #fff;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: #fff;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3e%3cpath fill='%23666' d='M6 8L0 0h12z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #666;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background: #222;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    background: #444;
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.form-message {
    max-width: 600px;
    margin: 2rem auto 0;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* How Booking Works Section */
.booking-steps {
    background: #f8f9fa;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.step {
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #222;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.step h3 {
    color: #222;
    font-size: 1.25rem;
    margin-bottom: 0.7rem;
}

.step p {
    color: #555;
    font-size: 0.98rem;
    line-height: 1.6;
}

/* Where You'll Stay Section */
.stay {
    background: #fff;
}

.stay .accommodation-grid {
    margin-top: 1rem;
}

.stay-trigger {
    cursor: pointer;
}

.stay-thumb {
    position: relative;
    overflow: hidden;
}

.stay-thumb img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.stay-trigger:hover .stay-thumb img {
    transform: scale(1.04);
    transition: transform 0.4s ease;
}

.stay-thumb-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    backdrop-filter: blur(2px);
}

/* Apartment Gallery Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
}

.lightbox[hidden] {
    display: none;
}

.lightbox-stage {
    max-width: 1000px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-stage img {
    max-width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.lightbox-counter {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin-top: 1rem;
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.6rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.85;
}

.lightbox-nav {
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    font-size: 2.2rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.lightbox-nav:hover,
.lightbox-close:hover {
    opacity: 1;
    background: rgba(255,255,255,0.25);
}

@media (max-width: 600px) {
    .lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 1.6rem;
    }
    .lightbox-close {
        font-size: 2.2rem;
        top: 10px;
        right: 14px;
    }
}

/* Contact Section */
.contact {
    background: #f8f9fa;
    padding: 60px 0;
}

.contact-info {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-info a {
    color: #444;
    text-decoration: none;
    font-weight: 600;
}

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

/* Footer */
footer {
    background: #222;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

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

    h2 {
        font-size: 2rem;
    }

    section {
        padding: 60px 0;
    }

    .photo-gallery {
        grid-template-columns: 1fr;
    }

    .photo-gallery img {
        height: 300px;
    }

    .benefits-grid,
    .program-grid,
    .accommodation-grid,
    .notes-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .logic-grid {
        grid-template-columns: 1fr;
    }

    .prices-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .booking-form {
        padding: 2rem 1.5rem;
    }

    .logic-section {
        padding: 2rem 1.5rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
    padding: 1rem 1.5rem;
    z-index: 9999;
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 260px;
    margin: 0;
    font-size: 0.95rem;
    color: #333;
}

.cookie-banner-text a {
    color: #222;
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid #222;
    background: #fff;
    color: #222;
    transition: background 0.2s ease, color 0.2s ease;
    min-width: 110px;
}

.cookie-btn-accept {
    background: #222;
    color: #fff;
}

.cookie-btn:hover {
    opacity: 0.85;
}

@media (max-width: 600px) {
    .cookie-banner-buttons {
        width: 100%;
    }
    .cookie-btn {
        flex: 1;
    }
}

/* Consent Checkboxes */
.form-consent {
    margin-bottom: 1rem;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-weight: 400;
    font-size: 0.9rem;
    color: #555;
    cursor: pointer;
    line-height: 1.5;
}

.consent-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    flex-shrink: 0;
    cursor: pointer;
}

.consent-label a {
    color: #222;
    text-decoration: underline;
}

/* Footer */
.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-info p {
    font-size: 0.9rem;
    margin: 0.2rem 0;
    color: #aaa;
}

.footer-info strong {
    color: #fff;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-links .social-icon {
    display: inline-flex;
    line-height: 0;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-copyright {
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    padding-top: 1rem;
    border-top: 1px solid #333;
}
