﻿html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

body {
    margin-bottom: 60px;
    font-family: 'Playfair Display', serif;
    height: 100vh; /* Just to enable scrolling */
    background-color: #fafafa;
    color: #333;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    transition: all 0.4s ease;
    background: transparent;
    color: white;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.15);
}

    .navbar.scrolled,
    .navbar:hover {
        background-color: white;
        color: black;
    }

        .navbar.scrolled a,
        .navbar:hover a,
        .navbar.scrolled .logo,
        .navbar:hover .logo,
        .navbar.scrolled i,
        .navbar:hover i {
            color: black !important;
        }

.navbar-left,
.navbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar a{
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 16px;
}

.logo a{
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 28px;
}

.navbar a:hover {
    color: gray;
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: inherit;
    transition: color 0.3s ease;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 20px;
    transition: all 0.3s ease;
}

    .mobile-menu a {
        padding: 10px 0;
        color: black;
        text-decoration: none;
        font-size: 18px;
        border-bottom: 1px solid #ccc;
    }

/* Responsive */
@media (max-width: 768px) {
    .navbar-left {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-menu.show {
        display: flex;
    }

    .navbar {
        flex-wrap: wrap;
    }
}

/*Footer Code*/
.luxury-footer {
    background: #0d0d0d;
    color: #d4af37;
    padding: 60px 20px 30px 20px;
    font-family: 'Playfair Display', serif;
    position: relative;
    overflow: hidden;
    display:block;
    margin-top:30px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.footer-brand {
    text-align: center;
    margin-bottom: 20px;
}

    .footer-brand h2 {
        font-size: 36px;
        margin-bottom: 5px;
    }

    .footer-brand .slogan {
        font-size: 20px;
        font-weight: 300;
        color: #b08d28;
        margin-bottom: 30px;
    }

.newsletter {
    text-align: center;
    margin-bottom: 50px;
}

    .newsletter h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .newsletter form {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .newsletter input[type="email"] {
        padding: 10px 20px;
        border: none;
        border-radius: 30px;
        outline: none;
        width: 300px;
        font-size: 16px;
    }

    .newsletter button {
        padding: 10px 25px;
        background-color: #d4af37;
        color: #0d0d0d;
        border: none;
        border-radius: 30px;
        cursor: pointer;
        font-size: 16px;
        transition: background 0.3s;
    }

        .newsletter button:hover {
            background-color: #b08d28;
        }

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    text-align: center;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

    .footer-column ul li {
        margin-bottom: 10px;
    }

        .footer-column ul li a {
            color: #f5f5dc;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
        }

            .footer-column ul li a:hover {
                color: #d4af37;
            }

.social-icons a {
    color: #d4af37;
    font-size: 22px;
    margin: 0 10px;
    transition: transform 0.3s, color 0.3s;
}

    .social-icons a:hover {
        color: #ffffff;
        transform: scale(1.2);
    }

.footer-bottom {
    border-top: 1px solid #b08d28;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #888;
}

/* Sparkle Layer */
.sparkle-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('~/images/golden_texture.png') repeat;
    background-size: cover;
    opacity: 0.1;
    animation: moveSparkles 60s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes moveSparkles {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 1000px 1000px;
    }
}

/* Perfume Bottle Animation */
.perfume-icon {
    position: absolute;
    bottom: 20px;
    right: 30px;
    width: 60px;
    animation: bouncePerfume 4s infinite ease-in-out;
    z-index: 3;
}

    .perfume-icon img {
        width: 100%;
    }

@keyframes bouncePerfume {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(-5deg);
    }
}
/*.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    padding: 15px;
    font-size: 24px;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
        text-decoration: none;
        color: white;
    }*/