/* Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Transition for smooth theme change */

body {
    font-family: 'Poppins', sans-serif;
    transition: background 0.5s ease, color 0.5s ease;
}


/* Light Theme */

.light-theme {
    background: #fff;
    color: #111;
}

.light-theme .navbar {
    background: #fff;
    color: #111;
}

.light-theme .nav-links li a {
    color: #111;
}

.light-theme .logo {
    color: goldenrod;
}


/* Dark Theme */

.dark-theme {
    background: #000;
    color: #eee;
}

.dark-theme .navbar {
    background: #000000;
    color: #eee;
}

.dark-theme .nav-links li a {
    color: #eee;
}

.dark-theme .logo {
    color: goldenrod;
}

.header {
    display: flex;
    width: 99%;
    height: 0%;
}

.logo {
    width: 200px;
    height: auto;
}

.nav {
    width: 33%;
}

.theme {
    width: 33%;
}


/* Header styling */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}


/* Logo styling */

.logo img {
    height: 50px;
    width: auto;
}


/* Navigation styling */

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    /* margin-top: 20px; */
    text-decoration: none;
    color: #c7a600;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #584a02;
}


/* Responsive */

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    nav ul {
        flex-direction: column;
        gap: 15px;
        margin-top: 10px;
    }
}


/* Theme Toggle Button */

.theme-toggle {
    background: none;
    border: 2px solid goldenrod;
    border-radius: 50%;
    font-size: 1.2rem;
    padding: 8px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    margin-left: 20px;
}

.theme-toggle:hover {
    background: goldenrod;
    color: #fff;
    transform: scale(1.1);
}

 :root {
    --gold: #d4af37;
    --dark-bg: linear-gradient(135deg, #000000, #1a1a1a);
    --light-bg: linear-gradient(135deg, #f9f9f9, #e6e6e6);
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    background: url('marble-bg.jpg') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
    /* position: relative; */
    transition: background 0.6s ease, color 0.6s ease;
    margin-bottom: 50px;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 217, 0, 0.301), transparent 70%);
    animation: mist 8s infinite alternate;
}


/* Hero Text */

.hero-text {
    max-width: 50%;
    animation: fadeInLeft 1s ease-in-out forwards;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin: 0 0 20px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}


/* CTA Buttons */

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: goldenrod;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
    /* cursor: pointer; */
}

.btn:hover {
    background: #b8860b;
    transform: scale(1.05);
}


/* Perfume Bottle */

.hero-image {
    max-width: 40%;
    position: relative;
    animation: zoomIn 1.2s ease-in-out forwards;
}

.hero-image img {
    width: 100%;
    filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.5));
}


/* Fade-in Animation */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1.5s forwards;
}

.fade-in.delay {
    animation-delay: 0.5s;
}

.fade-in.delay2 {
    animation-delay: 1s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Collection Section */

.collection-section {
    padding: 70px 10%;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 50px;
    color: goldenrod;
    font-weight: bold;
    position: relative;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border: 1px solid #d4af37;
    border-radius: 15px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.15);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 22px rgba(212, 175, 55, 0.25);
}

.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.price {
    font-size: 1rem;
    color: #b8860b;
    margin-bottom: 15px;
    font-weight: bold;
}


/* .mission */

h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #b8860b;
    text-align: center;
}

.mv-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 60px 10%;
    text-align: center;
}

.mv-card {
    /* background: #fff; */
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 6px 18px goldenrod;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 22px goldenrod;
}

.mv-icon {
    font-size: 50px;
    margin-bottom: 15px;
    display: inline-block;
    transition: transform 0.3s ease;
    color: goldenrod;
}

.mv-card:hover .mv-icon {
    transform: scale(1.2);
}

.mv-title {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
}

.mission {
    color: goldenrod;
}

.vision {
    color: goldenrod;
}

.mv-line {
    width: 50px;
    height: 3px;
    /* background: #ddd; */
    margin: 10px auto 20px;
    border-radius: 2px;
}

p {
    font-size: 14px;
    /* color: #555; */
    line-height: 1.6;
}

@media (max-width: 768px) {
    .mv-section {
        padding: 40px 5%;
        gap: 20px;
    }
}


/* ------------------ RESPONSIVE BREAKPOINTS ------------------ */


/* Large screens (desktops/laptops) */

@media (max-width: 1200px) {
    .hero {
        font-size: 2.5rem;
        padding: 40px 15px;
    }
    .p {
        width: 70%;
    }
}


/* Tablets */

@media (max-width: 992px) {
    .intro {
        flex-direction: column;
        align-items: center;
    }
    .p {
        width: 90%;
        text-align: left;
        padding: 10px;
    }
    .hero {
        font-size: 2rem;
    }
}


/* Mobile Devices */

@media (max-width: 576px) {
    .hero {
        font-size: 1.6rem;
        padding: 30px 10px;
    }
    .p {
        width: 100%;
        font-size: 0.95rem;
    }
}

.mv-icon {
    font-size: 50px;
    margin-bottom: 15px;
    display: inline-block;
    transition: transform 0.3s ease;
    font-family: "Segoe UI Symbol", "Arial Unicode MS", sans-serif;
}

.mission {
    color: goldenrod;
}

.vision {
    color: goldenrod;
}

.mv-icon:hover {
    /* color: white; Orange on hover */
    transform: scale(1.2);
}


/* Customer Reviews Section */

.reviews-section {
    padding: 70px 20px;
    /* background: #f5f0e6; light beige */
    text-align: center;
}

.reviews-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #b8860b;
    /* golden accent */
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.review-card {
    /* background: #fff; */
    border: 1px solid #d4af37;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.2);
}

.review-card img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 2px solid #d4af37;
}

.review-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    /* color: #333; */
}

.stars {
    color: #ffd700;
    /* gold stars */
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.review-card p {
    font-size: 0.95rem;
    /* color: #555; */
    font-style: italic;
    line-height: 1.5;
}


/* social-media */

.social-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.social-floating a img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, opacity 0.3s ease;
    background-color: white;
}

.social-floating a:hover img {
    transform: scale(1.15);
    opacity: 0.9;
}


/* Luxury Footer */

.luxury-footer {
    box-shadow: 0 8px 22px goldenrod;
    padding: 60px 20px 30px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-column h2,
.footer-column h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-column p,
.footer-column ul li {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li a {
    text-decoration: none;
    color: #d4af37;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #d4af37;
}

.tagline {
    font-size: 0.9rem;
    margin-top: 8px;
    /* color: #aaa; */
}


/* Social Icons */

.footer-bottom {
    margin-top: 40px;
    text-align: center;
}

.social-icons {
    margin-bottom: 15px;
}

.social-icons a {
    display: inline-block;
    margin: 0 8px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #d4af37;
    border-radius: 50%;
    color: #d4af37;
    transition: 0.3s;
    font-size: 0.9rem;
}

.social-icons a:hover {
    background: #d4af37;
    /* color: #000; */
}

.copyright {
    font-size: 0.85rem;
    /* color: #888; */
}


/* Responsive */

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}


/* Contact Section */

.contact-section {
    padding: 70px 10%;
    text-align: center;
}

.contact-intro {
    font-size: 1rem;
    margin-bottom: 40px;
    color: inherit;
    /* theme ke hisaab se text color change hoga */
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form {
    background: inherit;
    /* theme ke hisaab se background lega */
    border: 1px solid var(--gold);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.15);
    transition: background 0.3s, color 0.3s;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    transition: border 0.3s, background 0.3s, color 0.3s;
}

.light-theme .contact-form input,
.light-theme .contact-form textarea {
    background: #fff;
    color: #111;
}

.dark-theme .contact-form input,
.dark-theme .contact-form textarea {
    background: #222;
    color: #eee;
    border: 1px solid #555;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: goldenrod;
}

.contact-info {
    text-align: left;
}

.contact-info h3 {
    margin-bottom: 15px;
    color: goldenrod;
}

.contact-info p {
    margin-bottom: 10px;
    color: inherit;
}

.map {
    margin-top: 15px;
    border-radius: 8px;
    overflow: hidden;
}


/* Responsive */

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.footer-social a img {
    width: 30px;
    height: 30px;
}

.footer-social a:hover img {
    transform: scale(1.2);
    opacity: 0.8;
}


/* CONTACT US  */


/* Contact Hero Section */

.contact-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 70px 10%;
    gap: 40px;
}

.contact-text {
    flex: 1;
}

.contact-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: goldenrod;
}

.contact-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: inherit;
    /* theme ke hisaab se color */
}

.contact-details p {
    margin-bottom: 10px;
    font-size: 1rem;
    color: inherit;
}

.contact-image {
    flex: 1;
    text-align: right;
}

.contact-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}


/* Map Section */

.map-section {
    text-align: center;
    padding: 50px 10%;
}

.map-section h2 {
    margin-bottom: 20px;
    color: goldenrod;
}

.map iframe {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.15);
}


/* Responsive */

@media (max-width: 768px) {
    .contact-hero {
        flex-direction: column;
        text-align: center;
    }
    .contact-image {
        text-align: center;
    }
}