* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "Poppins", sans-serif; */
    font-family: "Montserrat", sans-serif;

    transition: background 0.3s, color 0.3s;
}

body {
    background: #fdf7f7;
    color: #1a1a1a;
}

/* Navbar */

.nav-bar {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    z-index: 9999;
}


/* .navbar.scrolled {
    background: var(--nav);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
} */

.navbar.scrolled {
    background: var(--nav);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .25);
    backdrop-filter: blur(6px);
}

/* .navbar {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center;
    padding: 15px 50px;
    transition: 0.3s;
    position: fixed;
    width: 100%;
} */
.navbar {
    position: fixed;
    top: 0;
    /* make sure it hugs the viewport top */
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    /* sit above all other content */
    display: flex !important;
    justify-content: space-between !important;
    align-items: center;
    padding: 15px 50px;
    transition: 0.3s;
}

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 25px;
}

nav ul li a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

nav ul li a i {
    color: #b8860b;
}

.mode-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #ffffff;
    background-color: #000;
    font-size: 22px;
    height: 38px;
    width: 38px;
    border-radius: 8px;
}

/* .mode-btn .i{

} */

/* Hamburger menu button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #D8B474;
    font-size: 24px;
    cursor: pointer;
}

/* Responsive navbar */
@media (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background-color: var(--bg);
        text-align: center;
        padding: 20px 0;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding-left: 30px;
    }

    .menu-toggle {
        display: block;
    }


    .ps-footer-wrap {
        gap: 0px !important;

    }

    .ps-details-area {
        text-align: center !important;
        padding-left: 0px !important;
    }

    .ps-footer-wrap {
        gap: 20px !important;
    }
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 50px;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 48px;
    color: var(--text);
    font-family: 'Oswald', sans-serif;
    /* color: #222222; */

}

.hero p {
    color: var(--text);
    margin: 20px 0;
    line-height: 1.6;
    font-size: 18px !important;
    font-weight: 400 !important;
    color: var(--para) !important;

    /* adds space between lines */

}

.btn-group {
    display: flex;
    gap: 15px;
}

.btn-primary,
.btn-outline {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary {
    background-color: #D8B474;
    border: none;
    color: #fff;
}

.btn-outline {
    background: none;
    border: 2px solid #D8B474;
    color: #D8B474;
}

/* ===========================
   🌗 COLOR VARIABLES
=========================== */
:root {
    --bg: #ffffff;
    --text: #222222;
    --nav: #ffffff;
    --card: #ffffff;
    --accent: #b8860b;
    --overlay: rgba(0, 0, 0, 0.8);
    --btn-bg: #ffffff;
    --btn-text: #667eea;
    --btn-hover-bg: #667eea;
    --btn-hover-text: #ffffff;
}

body.dark {
    --bg: #1a1a1a;
    --text: #ffffff;
    --nav: #2a2a2a;
    --card: #222222;
    --accent: #d4af37;
    --overlay: rgba(255, 255, 255, 0.15);
    --btn-bg: #333333;
    --btn-text: #d4af37;
    --btn-hover-bg: #d4af37;
    --btn-hover-text: #000000;
}

/* ===========================
   🌗 APPLY VARIABLES
=========================== */
body {
    background: var(--bg);
    color: var(--text);
    font-family: "Montserrat", sans-serif;
    margin: 0;
    transition: background 0.4s, color 0.4s;
}

/* Navbar */
.navbar {
    background: var(--nav);
    transition: background 0.4s;
}

nav ul li a {
    color: var(--text);
}

/* Gallery Section */
.gallery-header {
    color: var(--text);
}

.photo-item {
    background: var(--card);
}

.photo-overlay {
    background: linear-gradient(to top, var(--overlay), transparent);
}

/* Buttons */
.toggle-btn {
    background: var(--btn-bg);
    color: var(--btn-text);
    border: none;
    transition: all 0.3s ease;
}

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


@media (max-width: 992px) {
    .menu-btn {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        background: #fff;
        width: 100%;
        display: none;
        flex-direction: column;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: block;
        animation: fadeIn 0.4s ease;
    }

    .nav-links ul {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }

    .nav-links a {
        justify-content: center;
    }
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    color: #D8B474;
    font-size: 26px;
    cursor: pointer;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 140px !important;
    padding-bottom: 80px;

}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
    color: white;
}

.gallery-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.photo-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    height: 320px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.photo-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.photo-item:hover img {
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.photo-item:hover .photo-overlay {
    transform: translateY(0);
}

.photo-overlay h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.photo-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Fullscreen Modal */
.fullscreen-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.fullscreen-modal.active {
    display: flex;
}

.fullscreen-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.close-fullscreen {
    position: absolute;
    top: 30px;
    right: 30px;
    background: white;
    color: #333;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
}

.close-fullscreen:hover {
    background: #ff4757;
    color: white;
    transform: rotate(90deg);
}

/* Tablet - 3 images per row */
@media (max-width: 1024px) {
    .photo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .photo-item {
        height: 280px;
    }
}

/* Mobile Landscape - 2 images per row */
@media (max-width: 768px) {
    .gallery-header h1 {
        font-size: 2rem;
    }

    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .photo-item {
        height: 220px;
    }

    .photo-overlay h3 {
        font-size: 1rem;
    }

    .photo-overlay p {
        font-size: 0.8rem;
    }
}

/* Mobile Portrait - 1 image per row */
@media (max-width: 480px) {
    body {
        padding: 20px 10px;
    }

    .gallery-header {
        margin-bottom: 30px;
    }

    .gallery-header h1 {
        font-size: 1.5rem;
    }

    .gallery-header p {
        font-size: 0.9rem;
    }

    .photo-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .photo-item {
        height: 250px;
    }

    .close-fullscreen {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .fullscreen-modal img {
        max-width: 95%;
        max-height: 95%;
    }
}

h1 {
    color: var(--text);
}

p {
    color: var(--text);

}


/* ===== Desktop Sidebar (Right Side) ===== */
.social-sidebar-right {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: #996600;
    padding: 15px 10px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.social-icon {
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
    color: #222;
    background-color: white;
    border-radius: 50%;
    padding: 5px;
}

/* ===== Mobile View: Bottom Navbar ===== */
@media (max-width: 768px) {
    .social-sidebar-right {
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
        transform: none;
        flex-direction: row;
        justify-content: space-around;
        background-color: #996600;
        padding: 10px 0;
        border-radius: 0;
        box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    }

    .social-icon {
        font-size: 22px;
    }

    .social-icon:hover {
        transform: translateY(-3px);
    }
}

@media (max-width: 480px) {
    .social-icon {
        font-size: 20px;
    }
}



/* ===== Desktop Sidebar (Right Side) ===== */
.social-sidebar-right {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: #996600;
    padding: 15px 10px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.social-icon {
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
    color: #222;
    background-color: white;
    border-radius: 50%;
    padding: 5px;
}

/* ===== Mobile View: Bottom Navbar ===== */
@media (max-width: 768px) {
    .social-sidebar-right {
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
        transform: none;
        flex-direction: row;
        justify-content: space-around;
        background-color: #996600;
        padding: 10px 0;
        border-radius: 0;
        box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    }

    .social-icon {
        font-size: 22px;
    }

    .social-icon:hover {
        transform: translateY(-3px);
    }
}

@media (max-width: 480px) {
    .social-icon {
        font-size: 20px;
    }
}


/* Background */
/* Background */
.ps-footer-bg {
    background: url('images/DEMO 1 1 2  11d.png') no-repeat center center;
    background-size: cover;
    color: #ffffff;
    padding: 0px 20px;
    font-family: "Poppins", sans-serif;
}


/* Wrapper Layout */
.ps-footer-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 200px;
    max-width: 100px;
    margin: 0 auto;
}

/* Left Section */
.ps-photo-area {
    flex: 1;
    text-align: center;
    min-width: 250px;
    border-radius: 1000px;
}

.ps-profile-pic {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 2px solid #d8b56a;
    background-color: white;
    object-fit: cover;
}

/* Center Section */
.ps-details-area {
    flex: 2;
    text-align: start;
    min-width: 300px;
    padding-left: 80px;
}

.ps-name {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.ps-role {
    color: #d8b56a;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 20px;
}

.ps-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ps-contact-list li {
    margin: 15px 0;
    font-size: 15px;
}

.ps-contact-list i {
    color: #d8b56a;
    margin-right: 10px;
}

.ps-contact-list a {
    color: #fff;
    text-decoration: none;
}

.ps-contact-list a:hover {
    color: #d8b56a;
}

/* Right Section */
.ps-logo-area {
    flex: 1;
    text-align: center;
    min-width: 250px;
}

.ps-logo img.footer-logo {
    width: 120px;
    /* adjust as needed */
    height: auto;
    object-fit: contain;
}


.ps-brand {
    font-size: 70px;
    font-weight: 700;
    color: #d8b56a;
    margin-bottom: 15px;
}


.ps-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 2px;
    background-color: #ffffff;
    /* white background */
    color: #0b2341;
    /* icon color (dark blue) */
    border-radius: 50%;
    /* makes it circular */
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ps-social-icons a:hover {
    background-color: #d8b56a;
    /* gold hover color */
    color: #ffffff;
    /* white icon on hover */
    transform: scale(1.1);
    /* smooth zoom effect */
}


/* Responsive */
@media (max-width: 768px) {
    .ps-footer-wrap {
        flex-direction: column;
        text-align: center;
    }

    .ps-profile-pic {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 1240px) {

    .ps-footer-wrap {
        gap: 50px !important;

    }}