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

body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background-color: #eaeaea;
}

.home-header {
    position: relative;
    z-index: 1000;
    background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 50%, #404040 100%);
    padding: 1rem 0 3rem;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    color: #ffffff;
    transition: all 0.3s ease-in-out;
    width: 100%;
}

.home-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0.5rem 0;
    border-radius: 0;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.home-header.sticky img.logo {
    height: 50px !important;
}

.home-header.sticky h4 {
    font-size: 1rem !important;
}

.home-header nav h4 {
    color: #ffffff;
    transition: all 0.5s ease;
}

.welcome-content {
    padding-top: 5rem;
    padding-bottom: 5rem;
    max-height: 500px;
    opacity: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top;
    overflow: hidden;
}

.home-header.sticky .welcome-content {
    padding-top: 0;
    padding-bottom: 0;
    max-height: 0;
    opacity: 0;
    margin: 0 !important;
    transform: translateY(-20px);
}

.welcome-title {
    color: #ffffff;
}

.welcome-subtitle {
    font-size: 1.1rem;
    color: #cccccc;
}

.calendar-hero {
    width: 100%;
    max-width: 1200px;
    margin: 3rem auto 0;
    background-color: transparent;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 0 1.5rem;
}

.calendar-hero picture img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    display: block;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.calendar-hero picture img:hover {
    transform: scale(1.01);
}

/* .calendar-hero img rule removed as it is now inside picture img rule above */

.tracking-wrapper {
    max-width: 1100px;
    background: #ebebeb;
    border-radius: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.tracking-wrapper .form-control,
.tracking-wrapper .form-select {
    border-radius: 15px;
    border: 1px solid #9d9d9d;
    font-size: 18px;
}

.tracking-wrapper .form-control:focus,
.tracking-wrapper .form-select:focus {
    border-color: #007bff;
}

.tracking-wrapper .track-btn {
    border: none;
    border-radius: 15px;
    font-size: 18px;
    background-color: #d6b82e;
    transition: all 0.3s ease;
}

.tracking-wrapper .track-btn:hover {
    background-color: #c5a123;
    transform: translateY(-1px);
}

@media (max-width: 430px) {
    .calendar-hero {
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
    }
}