/* Reset i podstawowe style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigacja */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #ff6b35;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff6b35;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Active nav link style */
.nav-link.active {
    color: #ff6b35;
}

.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px) brightness(0.6);
    transform: scale(1.1);
    transition: transform 8s ease-in-out;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #ff6b35;
    color: white;
}

.btn-primary:hover {
    background: #e55a2e;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

/* Animacje */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sekcje */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #ff6b35;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

/* About Section */
.about {
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #e55a2e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 107, 53, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    font-size: 2rem;
    color: white;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.contact-item i {
    font-size: 24px;
    color: #343a40;
    width: 40px;
    text-align: center;
}

.contact-item h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    color: #343a40;
}

.contact-item p {
    margin: 0;
    font-size: 14px;
    color: #6c757d;
}

.contact-item a {
    color: #343a40;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #495057;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.contact-form label {
    font-weight: 600;
    color: #343a40;
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #495057;
    box-shadow: 0 0 0 3px rgba(73, 80, 87, 0.1);
}

.contact-form input.error,
.contact-form textarea.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.field-error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.checkbox-container {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.4;
}

.checkbox-container input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.contact-alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.contact-alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contact-alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
.footer {
    background: #222;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #ff6b35;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b35;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #ff6b35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #e55a2e;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Calendar Styles */
.calendar-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.calendar-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(52, 58, 64, 0.1);
    overflow: hidden;
    position: relative;
}

.calendar-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #343a40, #495057, #343a40);
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: linear-gradient(135deg, #343a40 0%, #495057 100%);
    color: white;
    position: relative;
}

.calendar-nav-btn {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.calendar-nav-btn:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#currentMonth {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background-color: #dee2e6;
    margin: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(52, 58, 64, 0.08);
}

.calendar-day-header {
    padding: 12px 5px;
    text-align: center;
    font-weight: 600;
    background: linear-gradient(135deg, #343a40 0%, #495057 100%);
    color: white;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
    font-size: 14px;
    cursor: default;
    min-height: 40px;
}

.calendar-day:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 5px 15px rgba(52, 58, 64, 0.2);
}

.calendar-day.empty {
    background-color: #f8f9fa;
    color: #dee2e6;
}

.calendar-day.available {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    color: #343a40;
    position: relative;
}

.calendar-day.available::after {
    content: '✓';
    position: absolute;
    top: 2px;
    right: 4px;
    font-size: 10px;
    color: #495057;
    opacity: 0.8;
}

.calendar-day.booked {
    background: linear-gradient(135deg, #f8d7da 0%, #f1aeb5 100%);
    color: #721c24;
    position: relative;
}

.calendar-day.booked::after {
    content: '✗';
    position: absolute;
    top: 2px;
    right: 4px;
    font-size: 10px;
    color: #dc3545;
    opacity: 0.8;
}

.calendar-day.tentative {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    color: #856404;
    position: relative;
}

.calendar-day.tentative::after {
    content: '?';
    position: absolute;
    top: 2px;
    right: 4px;
    font-size: 10px;
    color: #ffc107;
    opacity: 0.8;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fc 0%, #e9ecef 100%);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 2px 8px rgba(52, 58, 64, 0.1);
    transition: all 0.3s ease;
}

.legend-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(52, 58, 64, 0.15);
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.legend-color.available {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.legend-color.booked {
    background: linear-gradient(135deg, #f8d7da 0%, #f1aeb5 100%);
}

.legend-color.tentative {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
}

.legend-item span:last-child {
    font-weight: 500;
    color: #495057;
    font-size: 13px;
}

/* Calendar Responsive */
@media (max-width: 768px) {
    .calendar-container {
        margin: 0 20px;
        max-width: none;
    }
    
    .calendar-header {
        padding: 20px 20px;
    }
    
    #currentMonth {
        font-size: 18px;
    }
    
    .calendar-grid {
        margin: 10px;
    }
    
    .calendar-legend {
        flex-wrap: wrap;
        gap: 15px;
        padding: 15px;
    }
    
    .calendar-day {
        font-size: 12px;
        min-height: 35px;
    }
    
    .calendar-day-header {
        padding: 10px 3px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .calendar-nav-btn {
        padding: 6px 10px;
        font-size: 14px;
    }
    
    #currentMonth {
        font-size: 16px;
    }
    
    .calendar-day {
        font-size: 11px;
        min-height: 30px;
    }
    
    .legend-item {
        padding: 4px 8px;
    }
    
    .legend-item span:last-child {
        font-size: 12px;
    }
}

/* Smooth scrolling dla starszych przeglądarek */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

@media (max-width: 768px) {
    .calendar-container {
        margin: 0 20px;
        max-width: none;
    }
    
    .calendar-header {
        padding: 20px 20px;
    }
    
    #currentMonth {
        font-size: 18px;
    }
    
    .calendar-grid {
        margin: 10px;
    }
    
    .calendar-legend {
        flex-wrap: wrap;
        gap: 15px;
        padding: 15px;
    }
    
    .calendar-day {
        font-size: 12px;
        min-height: 35px;
    }
    
    .calendar-day-header {
        padding: 10px 3px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .calendar-nav-btn {
        padding: 6px 10px;
        font-size: 14px;
    }
    
    #currentMonth {
        font-size: 16px;
    }
    
    .calendar-day {
        font-size: 11px;
        min-height: 30px;
    }
    
    .legend-item {
        padding: 4px 8px;
    }
    
    .legend-item span:last-child {
        font-size: 12px;
    }
}

/* Dodatkowe animacje */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling dla starszych przeglądarek */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Calendar Info Tooltip */
.calendar-info {
    position: relative;
    display: inline-block;
    margin-left: 15px;
}

.calendar-info-icon {
    color: #ff6b35;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 6px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid #ff6b35;
}

.calendar-info-icon:hover {
    color: #fff;
    background: #ff6b35;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.calendar-tooltip {
    position: absolute;
    top: 40px;
    right: -180px;
    background: white;
    border: 2px solid #ff6b35;
    border-radius: 12px;
    padding: 20px;
    width: 350px;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.calendar-tooltip.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.calendar-tooltip::before {
    content: '';
    position: absolute;
    top: -12px;
    right: 190px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid #ff6b35;
}

.calendar-tooltip h4 {
    color: #ff6b35;
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid #ff6b35;
    padding-bottom: 8px;
}

.calendar-tooltip p {
    color: #495057;
    margin: 0 0 12px 0;
    font-size: 14px;
    line-height: 1.5;
}

.calendar-tooltip ul {
    margin: 12px 0;
    padding-left: 20px;
    color: #495057;
}

.calendar-tooltip li {
    margin-bottom: 6px;
    font-size: 14px;
}

.calendar-tooltip strong {
    color: #fff;
    font-weight: 600;
    background: #ff6b35;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
}

.tooltip-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff6b35;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 14px;
    padding: 6px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tooltip-close:hover {
    background: #e55a2b;
    transform: rotate(90deg);
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
    /* Header Mobile */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        padding: 15px;
        display: block;
    }

    /* Hero Mobile */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 200px;
        text-align: center;
    }

    /* Sections Mobile */
    section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }

    /* About Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .stats {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .stat {
        min-width: 100px;
    }

    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }

    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Contact Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-container {
        padding: 25px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }

    /* Calendar Mobile - IMPROVED */
    .calendar-container {
        margin: 0 10px;
        max-width: none;
    }
    
    .calendar-header {
        padding: 15px 20px;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    #currentMonth {
        font-size: 16px;
        order: -1;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .calendar-nav-btn {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .calendar-grid {
        margin: 10px;
    }
    
    .calendar-day {
        font-size: 12px;
        min-height: 35px;
    }
    
    .calendar-day-header {
        padding: 8px 3px;
        font-size: 10px;
    }
    
    .calendar-legend {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 15px 10px;
    }
    
    .legend-item {
        padding: 8px 12px;
    }

    /* Calendar Info Mobile */
    .calendar-info {
        margin-left: 8px;
    }
    
    .calendar-info-icon {
        font-size: 16px;
        padding: 4px;
    }
    
    .calendar-tooltip {
        right: -120px;
        width: 280px;
        padding: 15px;
    }
    
    .calendar-tooltip::before {
        right: 130px;
    }
    
    .calendar-tooltip h4 {
        font-size: 14px;
    }
    
    .calendar-tooltip p,
    .calendar-tooltip li {
        font-size: 12px;
    }

    /* Touch-friendly buttons on mobile */
    .btn,
    .calendar-nav-btn,
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 15px;
        font-size: 16px;
        border-radius: 8px;
    }
    
    .calendar-day {
        min-height: 40px;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile */
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    /* Calendar Extra Small */
    .calendar-container {
        margin: 0 5px;
    }
    
    .calendar-header {
        padding: 12px 15px;
    }
    
    #currentMonth {
        font-size: 14px;
    }
    
    .calendar-nav-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .calendar-day {
        font-size: 11px;
        min-height: 30px;
    }
    
    .calendar-day-header {
        padding: 6px 2px;
        font-size: 9px;
    }
    
    .calendar-tooltip {
        right: -30px;
        width: 250px;
        padding: 12px;
    }
    
    .calendar-tooltip::before {
        right: 40px;
    }
    
    /* Contact Extra Small */
    .contact-form-container {
        padding: 20px 15px;
    }
    
    .contact-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    /* Touch-friendly buttons */
    .btn,
    .calendar-nav-btn,
    .nav-link {
        min-height: 44px;
        padding: 10px 15px;
        font-size: 14px;
    }
}

/* Hamburger Animation */
.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);
}

/* Responsive tooltip */
@media (max-width: 768px) {
    .calendar-tooltip {
        right: -120px;
        width: 300px;
    }
    
    .calendar-tooltip::before {
        right: 130px;
    }
}

@media (max-width: 480px) {
    .calendar-tooltip {
        right: -50px;
        width: 280px;
    }
    
    .calendar-tooltip::before {
        right: 60px;
    }
}
