* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --white-color: #ffff;
    --black-color: #333;
    --grey-color: #666;
    --brown-color: #8b4513;
    --brown-color-dark: #332928;
    --light-brown-color: #f0efeb;
    --green-color: #aebf95;
    --light-grey-color: #f7f7f7;
    --grey-color-2: #d9d9d9;
    --green-color-2: #a9b98f;
    --green-color-3: #7fb069;
    --green-color-4: #dde7cf;
    --blue-color: #4a90e2;
    --green-color-5: #2e7d32;
    --green-color-6: #28a745;
    --brown-color-2: #2b2624;
    --brown-color-3: #332928;
    --orange-color: #e67e22;
    --red-color: #e74c3c;
    --red-color-2: #dc3545;
    --light-blue-color: #f7f8f4;
    --light-grey-color-2: #bfb8b6;
    --light-grey-color-3: #efe9d8;
    --light-yellow-color: #efe7b7;
    --light-pink-color: #ecccc3;
    --light-brown-color-2: #d4d1c7;
    --black-color-2: #222222;
    --blue-color-2: #2c3e50;
    --grey-color-3: #7a7a7a;
    --light-brown-color-3: #ddbbac;
    --blue-color-3: #6591cc;

    --primary-color: #332928;
    --primary-color-2: #f7f8f4;
    --s1: #162d28;
    --s2: #966c9d;
    --s3: #d4d1c7;
    --s4: #efe5b5;
    --s5: #b9c597;
    --s6: #301611;
    --s7: #ddbbac;
    --s8: #5c8ac7;
    --s9:#E3D9A8;

    --font-instrument: "Instrument Serif", serif;
    --font-palmer-print: "Palmer Lake Print", Regular;
    --font-roboto: "Roboto", Regular;
    --font-roman: "That That New Roman", serif;
}
body {
    font-family: var(--font-palmer-print);
    /* line-height: 1.6; */
}

.main-content {
    padding-top: 80px;
    min-height: calc(100vh - 80px);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white-color);
}

/* Header container */
.header {
    /* background: white; */
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar_container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo styles */
.logo {
    flex-shrink: 0;
}

.logo a {
    text-decoration: none;
    display: block;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Right side container */
.nav_right {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Navigation menu */
.nav_menu {
    display: flex;
    justify-content: center;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav__list li {
    position: relative;
}

.nav__list a {
    font-family: var(--font-roboto);
    text-decoration: none;
    color: var(--black-color);
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
}

.nav__list a:hover {
    color: var(--grey-color);
}

.nav__list a.active {
    color: var(--brown-color);
    font-weight: 600;
}

/* Sign up button */
.signup_button {
    flex-shrink: 0;
}

/* Hide mobile signup on desktop */
.mobile-signup {
    display: none;
}

/* Hide mobile signup menu on desktop */
.mobile-signup-menu {
    display: none;
}

/* Show desktop signup on desktop */
.desktop-signup {
    display: block;
}

.signup_button a {
    text-decoration: none;
    font-family: var(--font-palmer-print);
    background: #332928;

    border: none;
    padding: 0 24px;
    border-radius: 25px;
    transition:
        background-color 0.3s ease,
        transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.3);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.signup_button button {
    font-family: var(--font-palmer-print);
    margin-bottom: 5px;
    background: var(--brown-color-dark);
    border: none;
    font-size: 25px;
    font-weight: 600;
    color: var(--white-color);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.signup_button a:hover {
    background: var(--brown-color-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.4);
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--brown-color-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(58deg) translate(7px, 7px);
    margin-bottom: 2px;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    margin-top: 10px;
    transform: rotate(-55deg) translate(7px, -7px);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .nav__list {
        gap: 25px;
    }

    .nav__list a {
        font-size: 15px;
    }

    .logo img {
        height: 35px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }

    .navbar_container {
        padding: 0 15px;
        position: relative;
        justify-content: space-between;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        order: 3;
    }

    .mobile-menu-toggle span {
        width: 100%;
        height: 3px;
        background-color: var(--brown-color-dark);
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    /* Hide desktop and menu signup on mobile; allow header mobile-signup */
    .desktop-signup,
    .mobile-signup-menu {
        display: none !important;
    }
    .mobile-signup {
        display: block !important;
        order: 2;
    }

    .mobile-signup-menu button {
        width: 100%;
        padding: 14px 24px;
        font-size: 16px;
    }

    .desktop-signup {
        display: none;
    }

    /* Keep mobile-signup hidden (not used in current design) */
    .mobile-signup {
        display: none;
    }

    .nav_right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white-color);
        flex-direction: column;
        gap: 30px;
        padding: 80px 30px 30px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }

    .nav_right.active {
        right: 0;
    }

    .nav_menu {
        width: 100%;
    }

    .nav__list {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        width: 100%;
    }

    .nav__list li {
        width: 100%;
    }

    .nav__list a {
        font-size: 14px;
        display: block;
        padding: 10px 0;
        width: 100%;
    }

    .logo {
        order: 1;
        margin-left: 0;
    }

    .logo img {
        height: 32px;
    }

    /* Ensure mobile signup sits to the left of toggle on the right side */
    .mobile-signup {
        order: 2;
        margin-left: auto;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .navbar_container {
        padding: 0 10px;
    }

    .nav_right {
        width: 250px;
        padding: 70px 20px 20px;
    }

    .nav__list a {
        font-size: 14px;
    }

    .mobile-signup {
        margin-right: 8px;
    }

    .mobile-signup a {
        padding: 4px 12px;
    }

    .mobile-signup button {
        padding: 1px 12px 0px 12px;
        font-size: 16px;
    }

    .logo img {
        height: 28px;
    }

    .mobile-menu-toggle {
        width: 26px;
        height: 20px;
    }

    .mobile-menu-toggle span {
        height: 2.5px;
    }
}

/* Overlay for mobile menu */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

@media (min-width: 769px) {
    .nav-overlay {
        display: none !important;
    }
}

/* Custom PAUS logo font style (if using text instead of image) */
.paus-logo {
    font-size: 28px;
    font-weight: bold;
    color: #000;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
}

/* Smooth transitions */
.navbar_container * {
    transition: all 0.3s ease;
}

/* Active page indicator */
.nav__list a.active::after {
    /* content: ''; */
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--brown-color);
    border-radius: 1px;
}

.header {
    transition: background-color 0.3s ease;
}

.header.scrolled {
    background-color: var(--light-brown-color);
}
/* footer */

.footer {
   
    background:#F1F0EC  ;
    padding: 36px 0 28px;
    color: var(--black-color);
    position: relative;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 40px;
}

/* Left Column */
.footer-column:first-child {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 46%;
}

.footer-logo {
    margin-bottom: 10px;
}

.footer-logo img {
    height: 70px;
    width: auto;
}

.paus-logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--black-color);
    font-family: var(--font-roboto);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    font-size: 20px;
    color: var(--black-color);
    margin: 0;
    font-family: var(--font-roboto);
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.location-section h4,
.opening-hours h4 {
    font-family: var(--font-roboto);
    font-size: 20px;
    font-weight: 500;
    color: var(--black-color);
    text-transform: none;
    margin: 0 0 6px 0;
}

.location-section p,
.opening-hours p {
    font-family: var(--font-roboto);
    font-size: 20px;
    color: var(--grey-color);
    margin: 0;
    line-height: 1.5;
}

/* Middle and Right Columns */
.footer-column h3 {
    font-family: var(--font-roboto);
    font-size: 20px;
    font-weight: 500;
    color: var(--black-color);
    margin: 0 0 8px 0;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list li {
    margin: 0;
}

.footer-list a {
    font-family: var(--font-roboto);
    color: var(--grey-color);
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: var(--black-color);
}

/* Right Column - Info & Exclusive Offers */
.footer-column:last-child {
    margin-top: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 60px;
    width: auto;
}

.info-section,
.exclusive-offers-section {
    display: flex;
    flex-direction: column;

}

/* Social Media Icons */
.social-media {
    position: absolute;
    bottom: 20%;
    right: 24px;
    display: flex;
    gap: 30px;
}

.social-icon {
    width: 32px;
    height: 32px;
    color: var(--black-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
    border-radius: 4px;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.social-icon:hover {
    background: var(--black-color);
    color: var(--white-color);
}

/* Responsive Design */

/* Large Tablet */
@media (max-width: 1024px) {
    .footer-container {
        padding: 0 20px;
        gap: 80px;
    }
    .footer-column:first-child {
        width: 50%;
    }
    .footer-column:last-child {
        gap: 40px;
    }
    .paus-logo {
        font-size: 24px;
    }
    .contact-item {
        font-size: 16px;
    }
    .location-section h4,
    .opening-hours h4,
    .footer-column h3 {
        font-size: 16px;
    }
    .location-section p,
    .opening-hours p {
        font-size: 16px;
    }
    .footer-list a {
        font-size: 16px;
    }
    .social-icon {
        width: 24px;
        height: 24px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .footer {
        padding: 28px 0 60px;
    }
    .footer-container {
        flex-direction: column;
        padding: 0 16px;
        gap: 80px;
    }
    .footer-column:first-child,
    .footer-column:last-child {
        width: 100%;
    }
    .footer-column:last-child {
        margin-top: 0;
        flex-direction: row;
        justify-content: space-between;
        gap: 18px;
    }
    .footer-logo {
        text-align: left;
    }
    .contact-info {
        align-items: flex-start;
    }
    .location-info {
        align-items: flex-start;
        text-align: left;
    }
    .services-section,
    .info-section,
    .exclusive-offers-section {
        text-align: left;
    }
    .footer-list {
        align-items: flex-start;
    }
    .social-media {
        position: static;
        justify-content: flex-end;
        margin-top: 10px;
        margin-right: 20px;
        padding: 0;
    }
    .paus-logo {
        font-size: 22px;
    }
    .contact-item {
        font-size: 16px;
    }
    .location-section h4,
    .opening-hours h4,
    .footer-column h3 {
        font-size: 16px;
    }
    .location-section p,
    .opening-hours p,
    .footer-list a {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .footer {
        padding: 24px 0 56px;
    }
    .footer-container {
        /* padding: 0 12px; */
        gap: 40px;
    }
    .footer-logo img {
        height: 50px;
    }
    .paus-logo {
        font-size: 20px;
    }
    .contact-info {
        gap: 4px;
        flex-direction: row;
    }
    .contact-item {
        font-size: 14px;
    }
    .location-section h4,
    .opening-hours h4,
    .footer-column h3 {
        font-size: 14px;
    }
    .location-section p,
    .opening-hours p,
    .footer-list a {
        font-size: 14px;
    }
    .location-info {
        gap: 32px;
    }
    .services-section,
    .info-section,
    .exclusive-offers-section {
        gap: 8px;
    }
    .social-media {
        gap: 30px;
    }
    .social-icon {
        width: 22px;
        height: 22px;
    }
    .social-icon svg,
    .social-icon img {
        width: 32px;
        height: 32px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .footer-container {
        padding: 0 10px;
    }
    .paus-logo {
        font-size: 18px;
    }
    .contact-item {
        font-size: 14px;
    }
    .location-section h4,
    .opening-hours h4,
    .footer-column h3 {
        font-size: 14px;
    }
    .location-section p,
    .opening-hours p,
    .footer-list a {
        font-size: 14px;
    }
    .social-icon {
        width: 20px;
        height: 20px;
    }
    .social-icon svg,
    .social-icon img {
        width: 32px;
        height: 32px;
    }
}
