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

/* Make the body fill the entire viewport */
body {
    background-color: rgb(255, 255, 255);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

header {
    background-color: #ffa300;
    color: aliceblue;
    font-family: "Roboto", serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 80px;
    border-bottom: 4px solid #ffffff;
    position: absolute;   /* header stays at top */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;        /* make sure header is above image */
}

/* Hide toggle button by default */
.toggle-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

h1 {
    margin: 0;
    font-size: 2rem;
    line-height: 1; /* ensures consistent vertical alignment */
}

.outline1 {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    margin-top: 4%;
    margin-bottom: 1%;
    padding: 0;
    color: #000000;
}

/* Footer takes 20% of the page height */
footer {
    background-color: black;
    color: white;
    text-align: center;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav a {
    text-align: center;
    text-decoration: none;
}

nav li {
    list-style: none;
}

.topmenu {
    margin-top: 30px;
    margin-bottom: 0;
    margin-right: 30px;
    display: flex;
    justify-content: right;
    gap: 10px;
}

.topmenu li {
    font-size: large;
}

.topmenu a {
    padding: 10px;
    color: white;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
}

.topmenu a:hover {
    text-decoration: none; /* ✅ remove default underline */
    color: #060606;
    border-bottom: 3px solid #060606; /* ✅ single line under the nav */
}
.topmenu a.active{
    text-decoration: none; /* ✅ remove default underline */
    color: #060606;
}
.sidebar {
    display: none;
}
.menu-btn {
    display: none;
}
/* ✅ Removed stray "s" at the end of this rule */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.page-wrapper {
    min-height: 100vh;
    background-color: #ffffff;
    color: #ffffff;
}

/* Hero Section */
.hero-section {
    padding: 5rem 1rem;
}

@media (min-width: 640px) {
    .hero-section {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.hero-content {
    max-width: 72rem;
    margin: 0 auto;
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid;
}

.badge-hero {
    margin-bottom: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

.badge-popular {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
}

.badge-special {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

.hero-description {
    color: #080808;
    max-width: 42rem;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.75rem;
}

/* Pricing Section */
.pricing-section {
    padding: 0 1rem 5rem;
}

@media (min-width: 640px) {
    .pricing-section {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .pricing-section {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .menu-btn i.hidden {
        display: none;
    }
   
}

.pricing-container {
    max-width: 72rem;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    position: relative;
    border-radius: 1rem;
    border: 1px solid;
    padding: 2rem;
}

.pricing-card-popular {
    background-color: #111010;
    color: #ffffff;
    border-color: #ffffff;
}

.pricing-card-default {
    background-color: black;
    border-color: rgba(148, 135, 135, 0.1);
}

.card-header {
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
}

.card-title-popular {
    color: #efe3e3;
}

.card-title-default {
    color: #ffffff;
}

.price-container {
    margin-top: 1rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
}

.price-popular {
    color: #ffffff;
}

.price-default {
    color: #ffffff;
}

.duration {
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.duration-popular {
    color: #ffffff;
}

.duration-default {
    color: #ffffff;
}

.icon {
    width: 1rem;
    height: 1rem;
}

.separator {
    border: none;
    border-top: 1px solid;
    margin: 1.5rem 0;
}

.separator-popular {
    border-color: #e5e7eb;
}

.separator-default {
    border-color: white;
}

.features-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.check-icon-popular {
    color: #e9e0e0;
}

.check-icon-default {
    color: #ffffff;
}

.feature-text {
    line-height: 1.5;
}

.feature-text-popular {
    color: #ffffff;
}

.feature-text-default {
    color: #d1d5db;
}

.availability {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.availability-popular {
    color: #fdfffe;
}

.availability-default {
    color: #ffffff;
}

.btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-popular {
    background-color: #ffa300;
    color: #e5efe7;
    color: #ffffff;
}
.dropmenu a.active{
    text-decoration: none; /* ✅ remove default underline */
    color: #060606;
}

.btn-popular:hover {
    background-color: #1f2937;
    font-weight: bold;
}

.btn-default {
    background-color: #ffa300;
    color: #fffefe;
}

.btn-default:hover {
    background-color: #1f2937;
    color: #e5efe7;
    font-weight: bold;
}

.btn-secondary {
    background-color: #ffffff;
    color: #000000;
    padding: 0.75rem 2rem;
    width: auto;
}

.btn-secondary:hover {
    background-color: #f3f4f6;
}

/* CTA Section */
.cta-section {
    padding: 0 1rem 5rem;
}

@media (min-width: 640px) {
    .cta-section {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .cta-section {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.cta-container {
    max-width: 72rem;
    margin: 0 auto;
}

.cta-box {
    background: linear-gradient(to right, #2563eb, #9333ea);
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
}

.cta-title {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 2rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
    .footer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .footer {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.footer-content {
    max-width: 72rem;
    margin: 0 auto;
    text-align: center;
    color: #6b7280;
}

.footer-content p {
    font-size: 0.875rem;
}
@media screen and (max-width: 1000px) {
    .topmenu {
        display: none; /* hide top nav links */
    }
    .menu-btn {
        display: block; /* show the hamburger button */
    }
    
    .sidebar {
        display: block; /* sidebar becomes functional */
    }

    .menu-btn {
        background: none;
        border: none;
        outline: none;
        color: white;
        font-size: 1.8rem;
        cursor: pointer;
      }
    .menu-btn i.hidden {
        display: none;
    }
   
      
    
    .menu-button:hover {
        background-color: #e5e7eb;
    }
    
    .menu-button .icon {
        width: 24px;
        height: 24px;
        color: #374151;
        border: none;
    }

    /* Right Sidebar */
    .sidebar {
        position: fixed;
        top: 60px;
        right: 0;
        height: 100%;
        width: 45%;
        max-width: 320px;
        background-color: #ffa300;
        box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 40;
        overflow-y: auto;
    }
    .sidebar.open {
        transform: translateX(0);
    }
    
    .sidebar-content {
        padding: 10px;
    }
    
    
    /* Navigation List */
    .nav-list {
        list-style: none;
    }
    
    .nav-list li {
        margin-bottom: 4px;
    }
    
    .nav-link {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 0 10px 8px; /* less space on left */
        border-radius: 8px;
        color: #000000;
        text-decoration: none;
        transition: background-color 0.2s;
        font-size: large;
        font-family: "Montserrat", sans-serif;
        font-weight: 500;
    }
    
    
    .nav-link:hover {
        background-color: #f3f4f6;
    }
    
    /* Overlay */
    .overlay {
        position: fixed;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 30;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease-in-out;
    }
    
    .overlay.show {
        opacity: 1;
        pointer-events: auto;
    }
    header {
        position: fixed;
        background-color: #ffa300;
        color: aliceblue;
        font-family: "Roboto", serif;
        display: flex;                 /* places h1 and button side by side */
        align-items: center;           /* vertically align them */
        justify-content: space-between;/* puts h1 on left, button on right */
        padding: 0 20px;
        height: 60px;                  /* example fixed header height */
        
    }
    h1 {
        font-size: large;
    }
}