/* Custom Font */
@font-face {
    font-family: 'CustomFont';
    src: url('assets/fonts/Mulish-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --bg-color: #ffffff;
    /* Solid light grey */
    --bg-gradient-center: rgba(255, 253, 208, 0.4);
    /* Cream center */
    --text-color: #1a1a1a;
    /* Soft Black */
    --accent-color: #888;
    --font-main: 'CustomFont', sans-serif;
    --spacing-unit: 1rem;
    --line-color: #1a1a1a;
    /* Match text color exactly */

    /* Fluid Edge Spacing for Alignment */
    --edge-spacing: clamp(1.5rem, 5vw, 3rem);

    /* Consistent Line Thickness */
    --line-thickness: 1px;

    /* Brand Color (Extracted from image) */
    --brand-color: #fea66a;

    /* Shared Background Gradient (Uniform 5% opacity) */
    --bg-gradient: linear-gradient(to bottom, rgba(254, 166, 106, 0.02), rgba(254, 166, 106, 0.02));
}

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

html {
    scroll-behavior: smooth;
    /* Smooth scrolling for entire page */
}

body {
    background-color: var(--bg-color);
    /* Dynamic background color */
    /* Dynamic background color */
    background-image: var(--bg-gradient);
    background-attachment: fixed;
    /* Ensure gradient covers full scroll */
    color: var(--text-color);
    font-family: var(--font-main);
    min-height: 100vh;
    /* Allow content to expand beyond viewport */
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    overflow-y: auto;
    /* Enable vertical scrolling */
    display: flex;
    flex-direction: column;
    transition: background-color 0.3s ease, color 0.3s ease;
    /* Smooth theme transition */
}



/* Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: var(--edge-spacing);
    /* Fluid padding for equal spacing */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    /* Camouflage Header: Exact match to body background */
    background-color: var(--bg-color);
    background-image: var(--bg-gradient);
    background-attachment: fixed;
    /* No blur, just solid matching background */
    backdrop-filter: none;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    /* Ultra-smooth, long transitions for seamless feel */
    will-change: transform, opacity;
    /* GPU acceleration for buttery smoothness */
}

.site-header.hidden-header {
    transform: translateY(-100%);
    opacity: 0;
    /* Fade out while sliding */
}

.logo-container {
    display: flex;
    flex-direction: column;
}

.logo {
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-color);
    /* Same as other text */
}



.logo-subtitle {
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: lowercase;
    color: var(--text-color);
    opacity: 0.6;
    margin-top: 0.2rem;
}

.site-nav {
    display: flex;
    align-items: center;
}

.site-nav a {
    text-decoration: none;
    color: var(--text-color);
    margin-left: 2rem;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    /* Fluid font size */
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.2rem;
    /* Match logo line-height for perfect alignment */

    /* Box Shape Setup for Animation */
    position: relative;
    display: inline-block;
    padding: 0.5rem 1rem;
    /* Breathing room for the box */

    /* SVG Lines are injected via JS */
    /* Transitions handled on SVG elements */
    transition: color 0.3s;
}

/* SVG Container */
.nav-lines {
    position: absolute;
    top: calc(var(--edge-spacing) / -2);
    /* Start from horizontal line */
    left: 0;
    width: 100%;
    height: calc(100% + var(--edge-spacing) / 2);
    /* Extend to bottom */
    pointer-events: none;
    overflow: visible;
    z-index: 1;
}

/* SVG Lines Styling */
.nav-lines line {
    stroke: var(--line-color);
    stroke-width: 1px;
    /* Force 1px */
    vector-effect: non-scaling-stroke;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Initial States */
.line-left,
.line-right {
    /* Animate y2 from 0 to 100% */
    /* But SVG coordinates are absolute or percentage */
    /* We set y2="0" in JS. We need to animate it to "100%" on hover */
    /* CSS cannot animate SVG attributes directly easily without specific support */
    /* But we can use stroke-dasharray! */

    /* Better approach: Use CSS to control the 'y2' via scale? No. */
    /* Let's use stroke-dasharray for drawing effect */
    /* But we need to know the length. */

    /* Alternative: Use CSS height/width on the line elements? */
    /* SVG lines don't support CSS height/width like divs. */

    /* Wait, I can use CSS transform: scaleY() on the lines! */
    transform-origin: top;
    transform: scaleY(0);
    transition-delay: 0.4s;
    /* Exit: Verticals shrink after bottom */
    will-change: transform;
}

.line-bottom {
    transform-origin: left;
    transform: scaleX(0);
    transition-delay: 0s;
    /* Exit: Bottom shrinks first */
    will-change: transform;
}

/* Hover States */
.site-nav a:hover .line-left,
.site-nav a:hover .line-right {
    transform: scaleY(1);
    transition-delay: 0s;
    /* Enter: Verticals grow first */
}

.site-nav a:hover .line-bottom {
    transform: scaleX(1);
    transition-delay: 0.4s;
    /* Enter: Bottom grows after verticals */
}

/* Active State */
.site-nav a.active .line-bottom {
    transform: scaleX(1);
}

/* Remove old pseudo-elements */
.site-nav a::before,
.site-nav a::after {
    content: none;
    display: none;
}

/* Specific Smaller Size for ABOUT */
.site-nav a[href="#about"] {
    font-size: clamp(0.7rem, 1.2vw, 0.8rem);
    /* 20% smaller than default */
}

/* Photo Grid - Column-based Masonry */
.photo-grid {
    width: calc(100% - var(--edge-spacing) * 2);
    margin: 0 var(--edge-spacing);
    padding: calc(var(--edge-spacing) * 2 + 5rem) 0 2rem 0;
    /* Top padding: header height + spacing to avoid overlap */

    /* CSS Columns for true masonry effect */
    /* CSS Grid Layout (Strips/Auto-fit) */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;

    opacity: 1;
    transition: opacity 0.5s ease;
}

.photo-grid.hidden {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    will-change: transform;

    /* Grid requires full width images */
    width: 100%;
    height: auto;
    display: block;
}

.photo-item:hover {
    transform: scale(1.01);
    opacity: 0.95;
}

.photo-item img {
    width: 100%;
    height: auto;
    /* Let height adjust naturally to preserve aspect ratio */
    display: block;
    border-radius: 4px;
    /* Smooth fade-in on load */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-item img.loaded {
    opacity: 1;
}

/* Responsive adjustments (Auto-fit handles most, but we can fine-tune gap) */
@media (max-width: 600px) {
    .photo-grid {
        gap: 0.5rem;
    }
}

@media (max-width: 1024px) {
    .photo-grid {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .photo-grid {
        column-count: 1;
        padding: calc(var(--edge-spacing) + 7rem) 0 1rem 0;
        column-gap: 0.5rem;
    }

    .photo-item {
        margin-bottom: 0.5rem;
    }
}

/* Active State (Selected) */
.site-nav a.active {
    background-size: 100% var(--line-thickness);
    /* Keep bottom line visible */
    opacity: 1;
}

/* Main Home Container */
/* Main Home Container */
.home-container {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    /* Flow naturally from top */
    align-items: center;
    position: relative;
    z-index: 5;
    flex-direction: column;
    padding-left: calc(var(--edge-spacing) / 2);
    padding-top: 8rem;
    /* Space for fixed header */
}

/* Homepage Feature Image */
/* Homepage Feature Image Wrapper */
/* Homepage Feature Image Wrapper */
/* Homepage Feature Image Wrapper */
/* Homepage Feature Image Wrapper */
.feature-image-wrapper {
    position: relative;
    /* Removed fixed positioning to prevent overlap */
    width: 90vw;
    height: 70vh;
    max-width: 1000px;
    margin: 2rem auto;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* The Image Itself */
/* The Image Itself */
/* The Image Itself */
.home-feature-img {
    width: 100%;
    height: 100%;
    /* Ensure it fills the wrapper */
    max-height: 100%;
    /* Keep it within the wrapper's constraints */
    max-width: 100%;
    /* Extra safety */
    display: block;
    object-fit: contain;
    /* Maintain aspect ratio, fit within container */
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* projects-label removed */



/* Responsive */
@media (max-width: 1200px) {

    /* Early Breakpoint for Safety */
    .feature-image-wrapper {
        position: static;
        transform: none;
        width: 90vw;
        /* Match larger view */
        max-width: 100%;
        /* Ensure no overflow */
        margin: 2rem auto;
        /* Natural flow */
    }

    .home-feature-img {
        /* Reset fixed properties handled by wrapper */
        position: static;
        width: 100%;
        transform: none;
    }

    .nav-arrow {
        display: none;
        /* Hide arrows on mobile/tablet */
    }

    .home-container {
        padding-bottom: 2rem;
    }
}

@media (max-width: 1024px) {
    .feature-image-wrapper {
        width: 80vw;
    }

    .home-container {
        padding-bottom: 2rem;
        /* Add some bottom padding */
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: var(--edge-spacing);
    }

    .home-container {
        /* Align content from top on mobile */
        padding-top: 6rem;
        /* More space for header */
        padding-bottom: 2rem;
        justify-content: flex-start;
        min-height: auto;
        /* Allow content to dictate height */
    }

    .feature-image-wrapper {
        width: 90vw;
        height: auto;
        max-height: 60vh;
        /* Center image */
        margin: 0 auto 2rem;
        /* Removed order: 2 */
    }

    /* Remove obsolete footer styles */
}

@media (max-height: 600px) {
    .home-container {
        padding-top: 100px;
    }

    .home-feature-img {
        display: none;
        /* Hide on very short screens */
    }
}

/* Background Preview */
.bg-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}







@media (max-height: 600px) {
    .home-container {
        padding-top: 100px;
    }

    .home-feature-img {
        display: none;
        /* Hide on very short screens */
    }
}



/* Old About Section Removed */

/* About Section Integration */
.about-section {
    padding: 2rem var(--edge-spacing) 6rem;
    position: relative;
    z-index: 5;
    width: 100%;
    margin-top: 0;
}

.section-divider {
    width: calc(100% - var(--edge-spacing) * 2);
    height: 1px;
    background: var(--text-color);
    opacity: 0.1;
    margin: 4rem var(--edge-spacing);
}

.about-view {
    /* Main container for standalone view if still used, but section handles it now */
    display: none;
}

/* Remove old overlay toggles */


.about-container {
    width: 100%;
    /* No max-width to match fluid site layout */
    margin: 0;
    position: relative;
    padding-left: calc(var(--edge-spacing) * 1.5);
    /* Match grid gap (Line is at 0.5, Content at 1.5) */
    padding-right: 0;
}

/* Close Button */
.close-about-btn {
    position: absolute;
    top: -4rem;
    right: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
    padding: 0.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
    z-index: 101;
}

.close-about-btn:hover {
    transform: rotate(90deg);
    color: var(--brand-color);
}

/* Grid Layout */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    /* More space for text */
    gap: clamp(2rem, 5vw, 6rem);
    /* Fluid gap */
    align-items: start;
}

/* Left Column: Profile */
.about-profile {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.profile-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    /* Portrait ratio */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

/* Social Overlay (Restored for About Page) */
.social-overlay {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    z-index: 10;
}

.social-icon {
    color: var(--text-color);
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    position: relative;
}

.social-icon:hover {
    color: #E1306C;
    /* Instagram Official Pink/Magenta */
    transform: translateY(-2px);
}



/* Profile Info */
/* Profile Info */
.profile-info {
    text-align: left;
    margin-top: 1.5rem;
}

.profile-name {
    font-size: 1.9rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
    color: var(--text-color);
}

.profile-title {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 300;
}

.profile-email {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-color);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.profile-email:hover {
    opacity: 0.6;
}


/* Right Column: Text */
.about-text {
    padding-top: 0;
    /* Align with image top */
}

.about-headline {
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    line-height: 1.1;
    font-weight: 400;
    /* Light/Regular feel */
    margin-top: -0.3rem;
    /* Tiny offset to align baseline/cap-height with image */
    margin-bottom: 3rem;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

.about-bio p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    opacity: 0.9;
    max-width: 65ch;
    /* Readable line length */
}


/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 1rem;
    max-width: 600px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-color);
}

.contact-form input,
.contact-form textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding: 0.5rem 0;
    font-family: var(--font-main);
    font-size: 1.1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease;
    border-radius: 0;
    /* Reset iOS style */
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: var(--text-color);
}

.submit-btn {
    align-self: flex-start;
    margin-top: 1rem;
    background: transparent;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    padding: 1rem 3rem;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.submit-btn:hover {
    background: var(--text-color);
    color: var(--bg-color);
}

/* Responsive */
@media (max-width: 900px) {
    .about-view {
        align-items: flex-start;
        /* Top align on mobile */
        padding-top: 6rem;
        /* Space for close button */
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .close-about-btn {
        top: -4rem;
        right: 0;
    }

    .about-headline {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .profile-image-wrapper {
        max-width: 400px;
        /* Don't be too huge on mobile */
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 40;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 3rem;
    /* Larger for easier clicking */
    color: var(--text-color);
    cursor: pointer;
    z-index: 50;
    /* Ensure it's above everything */
    padding: 1rem;
    /* Larger click area */
    line-height: 1;
    transition: opacity 0.3s;
}

.close-btn:hover {
    opacity: 0.6;
}

.lightbox .close-btn {
    color: white;
}

.lightbox img {
    cursor: default;
    /* Don't show pointer on lightbox image */
}

/* Lightbox Navigation */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    padding: 2rem;
    /* Larger hit area */
    cursor: pointer;
    z-index: 50;
    opacity: 0.5;
    /* Subtle by default */
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Remove font-size as we use SVG width/height */
}

/* Specific SVG handling */
.nav-btn svg {
    width: 60px;
    /* Elegant thin large size */
    height: 60px;
    stroke-width: 0.5;
    /* Ultra thin elegant line */
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    /* Improve visibility on light images */
    transition: stroke-width 0.3s ease;
}

.nav-btn:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
}

.nav-btn:hover svg {
    stroke-width: 1;
    /* Thicken slightly on hover */
}

.prev-btn {
    left: 0;
    padding-left: 2rem;
}

.next-btn {
    right: 0;
    padding-right: 2rem;
}

/* Hide navigation on touch devices if preferred, or keep for tap targets */
@media (max-width: 768px) {
    .nav-btn {
        display: none !important;
    }
}

/* Vertical Line */
.vertical-line {
    position: fixed;
    top: 0;
    bottom: 0;
    left: calc(var(--edge-spacing) / 2);
    /* Halfway into the fluid padding */
    width: var(--line-thickness);
    background-color: var(--line-color);
    z-index: 100;
}

/* Horizontal Line */
.horizontal-line {
    position: fixed;
    left: 0;
    right: 0;
    top: calc(var(--edge-spacing) / 2);
    height: var(--line-thickness);
    background-color: var(--line-color);
    z-index: 100;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    /* Seamless transition matching header */
    will-change: opacity;
}

/* Mobile Optimizations (Maintaining Horizontal Layout) */
@media (max-width: 600px) {
    :root {
        --edge-spacing: 3vw;
        /* Tighter margins for mobile */
    }

    .logo {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
    }

    .logo-subtitle {
        font-size: 0.7rem;
        /* Shrink subtitle instead of hiding completely */
    }

    .site-nav a {
        margin-left: 0.8rem;
        /* Significant reduction from 2rem */
        font-size: clamp(0.8rem, 3.5vw, 0.95rem);
        padding: 0.4rem 0.5rem;
        /* Tighter padding for mobile boxes */
        letter-spacing: 0.02em;
    }
}
/* Packages Page Styles */
.packages-container {
    padding: 12rem var(--edge-spacing) 6rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    z-index: 5;
    position: relative;
}

.packages-header {
    text-align: center;
    margin-bottom: 6rem;
}

.packages-title {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.packages-intro {
    font-size: 1.2rem;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.package-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.package-card.featured {
    border: 1px solid var(--text-color);
    background: var(--bg-color);
}

.package-type {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.5;
    margin-bottom: 1rem;
}

.package-name {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.package-price {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.package-features {
    list-style: none;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.package-features li {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.8;
    position: relative;
    padding-left: 1.5rem;
}

.package-features li::before {
    content: "—";
    position: absolute;
    left: 0;
    opacity: 0.5;
}

.package-cta {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    border: 1px solid var(--text-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    transition: all 0.3s ease;
}

.package-cta:hover {
    background: var(--text-color);
    color: var(--bg-color);
}

.packages-footer {
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 4rem;
}

.packages-footer p {
    font-size: 1.1rem;
    opacity: 0.7;
    margin-bottom: 2rem;
}

.back-home {
    display: inline-block;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.back-home:hover {
    opacity: 1;
}

.inline-link {
    color: var(--text-color);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
    transition: opacity 0.3s;
}

.inline-link:hover {
    opacity: 0.6;
}

@media (max-width: 768px) {
    .packages-title {
        font-size: 2.5rem;
    }
    .packages-container {
        padding-top: 8rem;
    }
}
