*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html {
    scroll-behavior: smooth;
}
body{
    padding-top:90px;
    background:#FAFAF8;
    font-family:'Poppins', sans-serif;
    color:#1A1A1A;
}

nav{

    display:flex;

    align-items:center;

    padding:20px 80px;

    background:#FAFAF8;

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    transition: opacity 0.4s ease, transform 0.4s ease;
    
}

/* LOGO */

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    margin-right:auto;
    text-decoration:none;
}

.logo-text{
    font-family:'Playfair Display', serif;
    font-size:28px;
    font-weight:600;
    color:#C89A2B;
}

.logo img{

    height:75px;

    width:auto;

    display:block;
}

/* MENU */

nav ul{

    display:flex;

    align-items:center;

    list-style:none;

    gap:20px;
}

nav ul li a{

    text-decoration:none;
    font-size:14px;
    font-weight:500;

    color:#1A1A1A;

    transition:0.3s;
}

nav ul li a:hover{

    color:#C89A2B;
}

/* LOGIN */

.login-btn{

    margin-left:40px;

    background:#0D2342;

    color:white;

    border:none;

    padding:12px 24px;

    border-radius:8px;

    cursor:pointer;
}

/* FOOTER */

footer {
    padding: 40px 80px 20px;
    background: #0D2342;
    color: white;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1.4fr 0.7fr;
    gap: 45px;
    margin-bottom: 30px;
}

.footer-brand h2 {
    margin-bottom: 12px;
    color: #C89A2B;
    font-family: 'Playfair Display', serif;
    font-size: 30px;
}

.footer-brand p,
.footer-contact p,
.footer-contact a {
    color: #ddd;
    font-size: 13px;
    line-height: 1.8;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    margin-bottom: 15px;
    color: #C89A2B;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
}

.footer-links a,
.footer-contact a {
    display: block;
    margin-bottom: 8px;
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-contact i {
    width: 22px;
    color: #C89A2B;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: white;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.footer-social-icons a {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-social-icons a:hover {
    background: #C89A2B;
    border-color: #C89A2B;
    color: #0D2342;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #ccc;
    font-size: 12px;
    text-align: center;
}

@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    footer {
        padding: 35px 30px 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #ddd;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.8;
    text-decoration: none;
}

.footer-contact-item i {
    width: 22px;
    flex-shrink: 0;
    color: #C89A2B;
    font-size: 16px;
}

.footer-contact-item span {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.footer-contact-item:hover {
    color: white;
}

/* ABOUT PAGE ACTIVE MENU */

.active-link {
    color: #C89A2B !important;
    position: relative;
}

.active-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;

    width: 100%;
    height: 2px;

    background: #C89A2B;
}

/* FLOATING WHATSAPP BUTTON */

.whatsapp-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
    color: white;
    font-size: 32px;
    text-decoration: none;
    transition: 0.3s;
    z-index: 1000;
}

.whatsapp-button:hover {
    transform: translateY(-4px) scale(1.05);
}
/* TABLET AND MOBILE GLOBAL RESPONSIVE */

@media (max-width: 900px) {
    body {
        overflow-x: hidden;
    }

    nav {
        position: sticky;
        top: 0;
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
        padding: 16px 24px;
        transform: none !important;
    }

    .logo {
        width: 100%;
        justify-content: center;
        margin-right: 0;
    }

    .logo img {
        height: 58px;
    }

    .logo-text {
        font-size: 24px;
    }

    nav ul {
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        gap: 14px 18px;
    }

    .login-btn {
        margin-left: 0;
        padding: 10px 20px;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 560px) {
    nav {
        padding: 14px 18px;
    }

    .logo img {
        height: 48px;
    }

    .logo-text {
        font-size: 20px;
    }

    nav ul {
        gap: 12px 14px;
    }

    nav ul li a {
        font-size: 12px;
    }

    .login-btn {
        display: none;
    }

    footer {
        padding: 35px 24px 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-brand h2 {
        font-size: 24px;
    }

    .footer-contact-item,
    .footer-links a {
        font-size: 12px;
    }

    .whatsapp-button {
        right: 16px;
        bottom: 16px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}
/* KEEP LOGIN VISIBLE ON MOBILE */

@media (max-width: 560px) {
    .login-btn {
        display: block;
        margin-left: 0;
        padding: 9px 18px;
        font-size: 12px;
    }
}
