/* Variables */
:root {
    --pastel-lavender: #e6e6fa;
    --pastel-mint: #c1f0c1;
    --pastel-peach: #ffdab9;
    --pastel-blue: #add8e6;
    --pastel-pink: #ffc0cb;
    --dark-text: #333;
    --light-text: #666;
}

/* reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--pastel-lavender);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

#headerLogo {
    width:20px;
    height:20px;
}

/* header styles */
header {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 5px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.scrolled .navbar {
    padding: 15px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-text);
    display: flex;
    align-items: center;
}

.logo span {
    display: inline-block;
    margin-left: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: var(--pastel-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    color: white;
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--light-text);
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--dark-text);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--pastel-blue);
    left: 0;
    bottom: 0;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--dark-text);
}

/* hero section */
.hero {
    padding-top: 120px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-peach) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.parallax-item {
    position: absolute;
    opacity: 0.7;
}

.parallax-item.shape1 {
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    top: 20%;
    left: 10%;
}

.parallax-item.shape2 {
    width: 150px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 60%;
    right: 15%;
}

.parallax-item.shape3 {
    width: 80px;
    height: 80px;
    background-color: rgba(173, 216, 230, 0.2);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 30%;
    right: 25%;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--light-text);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--pastel-blue);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn:hover {
    background-color: var(--pastel-mint);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* section styles */
section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--pastel-mint);
    left: 25%;
    bottom: -10px;
}

.section-title p {
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto;
}

/* features section :skull: (DO NOT JUDGE) */
.features {
    background-color: white;
}

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

.feature-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--light-text);
}

/* about section */
.about {
    background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-blue) 100%);
    position: relative;
    overflow: hidden;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.02);
}
#w4wlogo {
    margin-right:20px;
}
.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
}

/* tabs section */
.tabs {
    background-color: var(--pastel-peach);
}

.tabs-container {
    max-width: 900px;
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.tab-btn {
    padding: 15px 25px;
    background-color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    flex: 1;
    text-align: center;
    color: var(--light-text);
    transition: all 0.3s;
}

.tab-btn.active {
    background-color: var(--pastel-blue);
    color: white;
}

.tab-btn:hover:not(.active) {
    background-color: #f5f5f5;
}

.tab-content {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    min-height: 300px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s;
}

.tab-pane h3 {
    margin-bottom: 15px;
    color: var(--dark-text);
}

.tab-pane p {
    margin-bottom: 15px;
}

.tab-pane ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.tab-pane li {
    margin-bottom: 10px;
}

/* calendar section (calander code is so bad just let me change it if you need smth) */
.calendar {
    background-color: var(--pastel-blue);
    padding-bottom: 100px;
}

.calendar-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.calendar-header {
    background-color: var(--pastel-blue);
    color: white;
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calendar-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.calendar-nav button {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px 10px;
    transition: transform 0.2s;
}

.calendar-nav button:hover {
    transform: scale(1.2);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 20px;
}

.calendar-day-header {
    text-align: center;
    font-weight: 600;
    padding: 10px;
    color: var(--light-text);
}

.calendar-day {
    height: 100px;
    border: 1px solid #f0f0f0;
    padding: 10px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s;
}

.calendar-day:hover {
    background-color: #f8f8f8;
}

.day-number {
    font-size: 0.9rem;
    color: var(--light-text);
}

.has-event {
    background-color: rgba(193, 240, 193, 0.3);
}

.event-indicator {
    width: 8px;
    height: 8px;
    background-color: var(--pastel-mint);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    right: 10px;
}

.event-name {
    font-size: 0.8rem;
    background-color: var(--pastel-mint);
    color: var(--dark-text);
    padding: 3px 6px;
    border-radius: 3px;
    margin-top: 5px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* contact section */
.contact {
    background-color: white;
}

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

.contact-info {
    text-align: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--pastel-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 50px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-text);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--pastel-blue);
    box-shadow: 0 0 5px rgba(173, 216, 230, 0.5);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    display: block;
    width: 100%;
}

/* footer */
footer {
    background-color: var(--dark-text);
    color: white;
    padding: 40px 0 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
    padding: 0 15px;
}

.footer-column h3 {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background-color: var(--pastel-blue);
    left: 25%;
    bottom: 0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: var(--pastel-blue);
}

.social-icon i {
    font-size: 1.2rem;
    color: white;
}

.copyright {
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #aaa;
}

/* back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--pastel-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 99;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--pastel-mint);
    transform: translateY(-5px);
}

/* modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.open {
    display: flex;
}

.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--light-text);
    transition: color 0.2s;
}

.close-modal:hover {
    color: var(--dark-text);
}

.modal-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.modal-details {
    margin-bottom: 20px;
}

.modal-detail {
    display: flex;
    margin-bottom: 10px;
}

.modal-detail-icon {
    flex: 0 0 30px;
    color: var(--pastel-blue);
}

.modal-detail-text {
    flex: 1;
}

/* loading animation */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid var(--pastel-lavender);
    border-top: 5px solid var(--pastel-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s forwards;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* responsive styles */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }

    .feature-card {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .navbar {
        position: relative;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        z-index: 100;
    }

    .nav-links.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        margin: 0;
        padding: 15px;
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .calendar-day {
        height: 80px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .tab-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .calendar-day {
        height: 60px;
        padding: 5px;
    }

    .day-number {
        font-size: 0.8rem;
    }
}