:root {
    --primary-color: #64b2d4;
    --secondary-color: #ffffff;
    --dark-color: #1a365d;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    overflow-x: hidden;
}

.heading-font { 
        font-family: "Raleway", Sans-serif;
    font-weight: 50;
    text-transform: uppercase;
    letter-spacing: 0.3px;
 }
.atas-font { font-family: 'Barlow Semi Condensed', sans-serif; }
.font-questrial { font-family: 'Questrial', sans-serif; }




/* Parallax & Smooth Scrolling Sections */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

/* Navigation */
#main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.5s ease;
    background: transparent;
    padding: 1.5rem 0;
}

#main-nav.scrolled {
    background-color: var(--primary-color);
    padding: 0.8rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Fullscreen Menu */
#fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 54, 93, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

#fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.menu-item {
    font-size: 3rem;
    margin: 1rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s;
}

/* Section Styling */
.content-section { 
    
    padding-top: 66px;    /* 6rem */
    padding-bottom: 66px; /* 6rem */
    padding-left: 0;
    padding-right: 0;


}
.section-title {
    position: relative;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Gallery & Cards */
.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.package-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.package-card:hover { transform: translateY(-10px); }










