* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Garamond', serif;
    line-height: 1.7;
    color: #3e2723;
    background: linear-gradient(135deg, #f5e6d3 0%, #e8d5c4 100%);
    min-height: 100vh;
}

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

/* Header - Chalet Style */
header {
    background: #5d4037;
    padding: 1.5rem 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-bottom: 2px solid #3e2723;
}

header h1 {
    color: #fff8e1;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 2px;
}

.tagline {
    color: #ffecb3;
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
}

/* Navigation - Wood Style */
.main-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.main-nav a {
    color: #fff8e1;
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    background: rgba(93, 64, 55, 0.5);
    border: 1px solid #8d6e63;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.main-nav a:hover,
.main-nav a.active {
    background: #8d6e63;
    border-color: #6d4c41;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 2rem;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(62, 39, 35, 0.85));
    padding: 3rem 2rem 2rem;
    color: white;
    text-align: center;
}

.hero-overlay h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff8e1;
    border: none;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-overlay p {
    font-size: 1.4rem;
    margin: 0;
    color: #ffecb3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Main Content - Wood Panel Effect */
main {
    background: #faf3e0;
    margin: 2rem auto;
    padding: 3rem;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #d7ccc8;
}

section {
    margin-bottom: 4rem;
}

h2 {
    color: #5d4037;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #8d6e63;
    padding-bottom: 0.8rem;
    font-weight: 600;
    position: relative;
}

h3 {
    color: #6d4c41;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Apartment Cards Overview */
.apartments-overview {
    margin-bottom: 3rem;
}

.apartment-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.apartment-card {
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #d7ccc8;
}

.apartment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.apartment-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.apartment-card-content {
    padding: 2rem;
}

.apartment-card-content h3 {
    color: #5d4037;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.apartment-card-content p {
    color: #6d4c41;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: #6d4c41;
    color: #fff8e1;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-weight: 600;
    border: 1px solid #5d4037;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: #5d4037;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.btn-large {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
}

/* Gallery Section - Rustic Wood Frame Effect */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.gallery-item {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid #d7ccc8;
    background: #ffffff;
    padding: 0;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-box {
    background: #ffffff;
    padding: 1.8rem;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #d7ccc8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.feature-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.feature-box h3 {
    color: #5d4037;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.feature-box p {
    color: #6d4c41;
    font-size: 1rem;
}

/* About Section */
.about-section p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #5d4037;
    line-height: 1.8;
}

.amenities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    list-style: none;
    margin-top: 1.5rem;
}

.amenities li {
    padding: 1rem 1.2rem;
    background: #8d6e63;
    border-radius: 4px;
    font-size: 1.05rem;
    color: #fff8e1;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #6d4c41;
    transition: transform 0.2s ease;
}

.amenities li:hover {
    transform: translateX(5px);
}

.amenities li::before {
    content: '✓ ';
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Location Section */
.location-section {
    margin-bottom: 3rem;
}

.map-container {
    background: #ffffff;
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid #d7ccc8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.map-note {
    text-align: center;
    margin-top: 1.5rem;
    color: #5d4037;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Booking CTA Section */
.booking-cta {
    background: #6d4c41;
    padding: 3rem;
    border-radius: 4px;
    text-align: center;
    color: #fff8e1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #5d4037;
}

.booking-cta h2 {
    color: #fff8e1;
    border-bottom: 2px solid #a1887f;
}

.booking-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ffecb3;
}

/* Calendar Section */
.calendar-intro {
    font-size: 1.15rem;
    color: #5d4037;
    margin-bottom: 2rem;
    text-align: center;
}

.apartment-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.apartment-btn {
    background: #8d6e63;
    color: #fff8e1;
    border: 1px solid #6d4c41;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
}

.apartment-btn:hover {
    background: #6d4c41;
    transform: translateY(-2px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.apartment-btn.active {
    background: #5d4037;
    border-color: #3e2723;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.calendar-container {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid #d7ccc8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.calendar-header h3 {
    font-size: 1.8rem;
    color: #5d4037;
    font-weight: 600;
}

.nav-btn {
    background: #6d4c41;
    color: #fff8e1;
    border: 1px solid #5d4037;
    padding: 0.7rem 1.3rem;
    font-size: 1.4rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: bold;
}

.nav-btn:hover {
    background: #5d4037;
    transform: scale(1.05);
}

.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
    margin-bottom: 2rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    font-size: 1.1rem;
    border: 1px solid transparent;
}

.calendar-day.header {
    background: #6d4c41;
    color: #fff8e1;
    cursor: default;
    font-size: 1rem;
    border: 1px solid #5d4037;
}

.calendar-day.available {
    background: #a5d6a7;
    color: #2e7d32;
    border: 1px solid #81c784;
}

.calendar-day.available:hover {
    background: #81c784;
    transform: scale(1.05);
    box-shadow: 0 2px 6px rgba(46, 125, 50, 0.3);
}

.calendar-day.booked {
    background: #ef9a9a;
    color: #c62828;
    cursor: not-allowed;
    border: 1px solid #e57373;
}

.calendar-day.past {
    background: #e0e0e0;
    color: #999;
    cursor: not-allowed;
    border: 1px solid #bbb;
}

.calendar-day.selected {
    background: #5d4037;
    color: #fff8e1;
    border: 2px solid #3e2723;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.calendar-day.blocked {
    background: #fff176;
    color: #795548;
    cursor: default;
}

.calendar-day.empty {
    background: transparent;
    cursor: default;
}

/* Legend */
.legend {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 500;
    color: #5d4037;
}

.color-box {
    width: 35px;
    height: 35px;
    border-radius: 2px;
    border: 1px solid #8d6e63;
}

.color-box.available {
    background: #a5d6a7;
}

.color-box.booked {
    background: #ef9a9a;
}

.color-box.selected {
    background: #5d4037;
}

.color-box.blocked {
    background: #fff176;
    border: 1px solid #f9a825;
}

/* Booking Info */
.booking-info {
    background: #ffffff;
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    display: none;
    border: 1px solid #d7ccc8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.booking-info.show {
    display: block;
}

.booking-info h4 {
    color: #5d4037;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.booking-form {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: #f5f5f5;
    border: 1px solid #d7ccc8;
    border-radius: 4px;
    text-align: left;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #5d4037;
    font-weight: bold;
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d7ccc8;
    border-radius: 4px;
    font-size: 1rem;
    background: white;
    color: #3e2723;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #5d4037;
    box-shadow: 0 0 3px rgba(93, 64, 55, 0.3);
}

.form-group input::placeholder {
    color: #a1887f;
}

.booking-info button {
    background: #6d4c41;
    color: #fff8e1;
    border: 1px solid #5d4037;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 1rem;
    font-weight: 600;
}

.booking-info button:hover {
    background: #5d4037;
    transform: translateY(-2px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Pricing Section */
.pricing-section {
    margin-bottom: 3rem;
    background: #f5e6d3;
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid #d7ccc8;
}

.pricing-intro {
    text-align: center;
    color: #6d4c41;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-style: italic;
}

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

.pricing-card {
    background: #8d6e63;
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    border: 2px solid #6d4c41;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    border-color: #5d4037;
}

.pricing-card h3 {
    color: #fff8e1;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.pricing-card.highlight {
    background: #8d6e63;
    border-color: #6d4c41;
}

.pricing-card.highlight h3 {
    color: #fff8e1;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffecb3;
    margin-bottom: 0.5rem;
}

.pricing-card.highlight .price-amount {
    color: #ffecb3;
}

.price-detail {
    color: #fff8e1;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.pricing-card.highlight .price-detail {
    color: #fff8e1;
}

.price-condition {
    color: #f5e6d3;
    font-size: 0.95rem;
    font-style: italic;
}

.pricing-card.highlight .price-condition {
    color: #f5e6d3;
}
    color: #ffecb3;
}
    color: #ffecb3;
}

.pricing-info {
    background: #ffffff;
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid #d7ccc8;
}

.pricing-info h3 {
    color: #5d4037;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.pricing-info ul {
    list-style: none;
    padding: 0;
}

.pricing-info li {
    color: #6d4c41;
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-info li:before {
    content: "✓";
    color: #a1887f;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    background: #8d6e63;
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #6d4c41;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-item h3 {
    color: #fff8e1;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-item p {
    color: #ffecb3;
    font-size: 1.05rem;
}

.contact-item a {
    color: #ffecb3;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: #fff8e1;
    text-decoration: underline;
}

/* Admin Section */
.admin-section {
    text-align: center;
}

.admin-btn {
    background: #757575;
    color: white;
    border: 1px solid #616161;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
}

.admin-btn:hover {
    background: #616161;
    transform: translateY(-1px);
}

.admin-panel {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 4px;
    margin-top: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #d7ccc8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.admin-panel h3 {
    color: #5d4037;
}

.admin-panel.hidden {
    display: none;
}

.admin-login input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #d7ccc8;
    border-radius: 4px;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    background: #ffffff;
    color: #5d4037;
}

.admin-login button {
    width: 100%;
    background: #6d4c41;
    color: #fff8e1;
    border: 1px solid #5d4037;
    padding: 1rem;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
}

.admin-login button:hover {
    background: #5d4037;
    transform: translateY(-1px);
}

.hint {
    margin-top: 1rem;
    color: #6d4c41;
    font-size: 0.95rem;
    font-style: italic;
}

.admin-controls {
    text-align: center;
}

.mark-mode-selector {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 0.8rem 0 1rem;
}

.mark-mode-btn {
    padding: 0.4rem 1rem;
    border: 2px solid #8d6e63;
    border-radius: 4px;
    background: transparent;
    color: #5d4037;
    cursor: pointer;
    font-weight: 500;
}

.mark-mode-btn.active {
    background: #8d6e63;
    color: #fff;
}

.admin-controls p {
    color: #5d4037;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.logout-btn {
    background: #d32f2f;
    color: white;
    border: 1px solid #c62828;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
}

.logout-btn:hover {
    background: #c62828;
    transform: translateY(-1px);
}

/* Footer - Chalet Style */
footer {
    background: #5d4037;
    padding: 2rem 0;
    text-align: center;
    color: #fff8e1;
    margin-top: 3rem;
    border-top: 2px solid #3e2723;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

footer p {
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    main {
        padding: 2rem;
    }
    
    .apartment-cards {
        grid-template-columns: 1fr;
    }
    
    .calendar {
        gap: 10px;
    }

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

@media (max-width: 768px) {
    header h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .main-nav {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .main-nav a {
        display: block;
        width: 100%;
        text-align: center;
    }

    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }

    .hero-section {
        height: 350px;
    }

    .hero-overlay {
        padding: 2rem 1rem 1.5rem;
    }

    .hero-overlay h2 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 1.1rem;
    }

    main {
        padding: 1.5rem;
        margin: 1rem auto;
    }

    .apartment-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .gallery-item img {
        height: 150px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .amenities {
        grid-template-columns: 1fr;
    }

    .calendar {
        gap: 6px;
    }

    .calendar-day {
        font-size: 0.85rem;
    }
    
    .calendar-header h3 {
        font-size: 1.3rem;
    }
    
    .calendar-container {
        padding: 1.5rem;
    }
    
    .legend {
        gap: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .apartment-selector {
        flex-direction: column;
    }
    
    .apartment-btn {
        width: 100%;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-section {
        padding: 1.5rem;
    }

    .pricing-info {
        padding: 1.5rem;
    }

    .booking-cta .btn-primary {
        display: block;
        width: fit-content;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1rem 0;
    }
    
    header h1 {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    .hero-section {
        height: 250px;
    }
    
    .hero-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .hero-overlay h2 {
        font-size: 1.5rem;
    }
    
    .hero-overlay p {
        font-size: 0.95rem;
    }
    
    main {
        padding: 1rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    .calendar {
        gap: 4px;
    }
    
    .calendar-day {
        font-size: 0.75rem;
    }
    
    .calendar-day.header {
        font-size: 0.7rem;
    }
    
    .nav-btn {
        padding: 0.5rem 1rem;
        font-size: 1.2rem;
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .price-amount {
        font-size: 1.8rem;
    }

    .pricing-info {
        padding: 1rem;
    }

    .pricing-info li {
        font-size: 0.95rem;
    }
}

/* Construction Notice Sticker */
.construction-sticker {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #9e9e9e 0%, #757575 100%);
    border: 3px solid #616161;
    border-radius: 8px;
    padding: 1rem;
    max-width: 280px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(350px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.sticker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff8e1;
    font-family: 'Georgia', 'Garamond', serif;
    font-size: 1rem;
}

.sticker-toggle {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    color: #fff8e1;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    padding: 0 5px 2px;
    margin-left: 0.5rem;
    flex-shrink: 0;
}

.sticker-toggle:hover {
    background: rgba(255, 255, 255, 0.35);
}

.sticker-body {
    color: #fff8e1;
    font-family: 'Georgia', 'Garamond', serif;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
    max-height: 400px;
    opacity: 1;
    margin-top: 0.6rem;
}

.construction-sticker.collapsed .sticker-body {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
}

.sticker-body p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.sticker-body p:first-child {
    margin-top: 0;
}

.sticker-body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .construction-sticker {
        top: 10px;
        right: 10px;
        max-width: 240px;
        padding: 0.8rem;
    }

    .sticker-body p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .construction-sticker {
        top: 5px;
        right: 5px;
        max-width: 200px;
        padding: 0.6rem;
        border-width: 2px;
    }

    .sticker-body p {
        font-size: 0.75rem;
        line-height: 1.3;
    }
}

/* Lightbox - Rustic Style */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(62, 39, 35, 0.95);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: zoomIn 0.3s;
    border-radius: 0;
    border: 2px solid #8d6e63;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

@keyframes zoomIn {
    from { transform: translate(-50%, -50%) scale(0.8); }
    to { transform: translate(-50%, -50%) scale(1); }
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff8e1;
    font-size: 1.3rem;
    text-align: center;
    padding: 12px 25px;
    background: rgba(93, 64, 55, 0.9);
    border-radius: 4px;
    border: 1px solid #a1887f;
    font-weight: 600;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff8e1;
    font-size: 55px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.lightbox-close:hover {
    color: #ffecb3;
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff8e1;
    font-size: 45px;
    font-weight: bold;
    cursor: pointer;
    padding: 15px 25px;
    background: rgba(93, 64, 55, 0.8);
    border-radius: 4px;
    user-select: none;
    transition: all 0.2s;
    border: 1px solid #a1887f;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(93, 64, 55, 0.95);
    transform: translateY(-50%) scale(1.05);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 75%;
        border-width: 1px;
    }

    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 35px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 30px;
        padding: 8px 15px;
    }

    .lightbox-caption {
        font-size: 0.95rem;
        bottom: 15px;
        padding: 8px 15px;
    }
}

/* Notification Modal - Chalet Style */
.notification-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(62, 39, 35, 0.8);
    animation: fadeIn 0.3s;
}

.notification-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid #d7ccc8;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    text-align: center;
    animation: slideIn 0.3s;
}

@keyframes slideIn {
    from {
        transform: translate(-50%, -60%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.notification-close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #5d4037;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.notification-close:hover {
    color: #8d6e63;
}

.notification-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.notification-content h3 {
    color: #5d4037;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.notification-content p {
    color: #6d4c41;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.notification-btn {
    background: #6d4c41;
    color: #fff8e1;
    border: 1px solid #5d4037;
    padding: 0.9rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    font-family: 'Georgia', 'Garamond', serif;
}

.notification-btn:hover {
    background: #5d4037;
    transform: translateY(-2px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .notification-content {
        padding: 2rem;
        max-width: 90%;
    }

    .notification-icon {
        font-size: 3rem;
    }

    .notification-content h3 {
        font-size: 1.4rem;
    }

    .notification-content p {
        font-size: 1rem;
    }
}
