* {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 150%;
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 45px;
}

h3 {
    font-size: 25px;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
}

:root {
     --logo-color:#FE7300;
    /* ======= Brand Color System ======= */
    --primary-color: #ff7b00;
    /* Vibrant food orange */
    --secondary-color: #b34700;
    /* Dark roasted orange (contrast) */
    --accent-color: #ffb347;
    /* Light orange accent for highlights */

    /* ======= Text & Background ======= */
    --background-color: #fffaf3;
    /* Warm creamy white background */
    --text-color: #2b2b2b;
    /* Deep neutral text for readability */
    --text-warning: #ff3b3b;
    /* Bold red for alerts */
    --text-success: #2ecc71;
    /* Fresh green for success messages */

    /* ======= Borders & Cards ======= */
    --border-color: #e6d5c3;
    /* Soft beige border */
    --card-background: #ffffff;
    /* Clean card background */
    --card-shadow: rgba(255, 123, 0, 0.2);
    /* Subtle orange-tinted shadow */

    /* ======= Buttons ======= */
    --button-text: #fff;
    /* White text for contrast */
    --button-cancel: #ff4d4d;
    /* Strong cancel red */
    --button-active: #ffa41b;
    /* Highlighted orange active button */
    --button-hover: #e56700;
    /* Slightly darker hover state */

    /* ======= Button Sizes ======= */
    --button-height-large: 60px;
    --button-height-medium: 40px;
    --button-height-small: 25px;
}



.navbar {
    width: 100%;
    position: fixed;
    top: 10px;
    z-index: 999;
   
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    border-radius: 20px;
    padding-left:20px;
    padding-right: 20px;
    background-color: white;

    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav-logo {
    padding-top: 5px;
    padding-bottom: 2px;
    display: flex;
    align-items: center;
   

}

.nav-logo img {
    height: 50px;
    width: auto;
}

/* Center links */
.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links li a {
    color: var(--text-color);
    font-weight: 600;
    font-size: 18px;
    position: relative;
    transition: color 0.3s ease;
}

/* Underline hover effect */
.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -6px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links li a:hover {
    color: var(--primary-color);
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Right side button */
.add-restaurant-btn {
    background-color: var(--primary-color);
    color: var(--button-text);
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px var(--card-shadow);
}

.add-restaurant-btn:hover {
    background-color: var(--button-hover);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-container {
        flex-direction: row;

    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}


.page-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-header p {
    color: var(--text-color);
    font-size: 18px;
}

.page-section {
    background: var(--card-background);
    border-radius: 16px;
    box-shadow: 0 4px 10px var(--card-shadow);
    padding: 30px;
    margin-bottom: 30px;
}

.page-section h2 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-section p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 17px;
}

.page-section ul {
    list-style: disc;
    padding-left: 25px;
}

.page-section li {
    margin-bottom: 10px;
    color: var(--text-color);
}




/* Hamburger toggle */
.nav-toggle {
    font-size: 28px;
    cursor: pointer;
    display: none;
    /* show only on small screens */
}

/* Drawer */
.nav-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 250px;
    height: 100%;
    background-color: var(--background-color);
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
    gap: 20px;
    transition: right 0.3s ease;
    z-index: 200;
}

.nav-drawer.active {
    right: 0;
}

.drawer-links,
.drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.drawer-links a {
    text-decoration: none;
    font-weight: 600;
    color: var(--text-color);
}

/* Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 150;
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width:1200px){
     .nav-container {
        width: 90%;

    }
}

/* Responsive */
@media (max-width: 992px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

    .nav-toggle {
        display: block;
    }
     .navbar{
        padding: 0px;
       
    }
    .nav-container {
        width: 90%;

    }
}

@media (max-width:600px) {
    h1 {
        font-size: 20px;
    }

    h2 {
        font-size: 18px;
    }

    h3 {
        font-size: 16px;
    }
    .navbar{
        padding: 0px;
       
    }
    .nav-container {
      width: 90%;
      border-radius:10px;

    }
    .nav-logo img {
    height: 30px;
}
}