/* ===================================
   Global Styles & Color Variables
   =================================== */

:root {
    --primary-red: #E62128;
    --dark-red: #B71C1C;
    --light-red: #FF6B6B;
    --silver: #C0C0C0;
    --dark-silver: #808080;
    --light-silver: #E8E8E8;
    --white: #FFFFFF;
    --black: #1a1a1a;
    --gray: #6c757d;
    --light-gray: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: white;
    background: #000000;
    line-height: 1.7;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ===================================
   Navigation
   =================================== */

.navbar {
    background: #000000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red) !important;
    transition: all 0.3s ease;
}

.navbar-logo {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
}

.nav-link {
    color: var(--primary-red) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--dark-red);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:not(.btn):hover::after,
.nav-link:not(.btn).active::after {
    width: 80%;
}

.nav-link.btn {
    background: var(--primary-red);
    color: var(--white) !important;
    border: 2px solid var(--primary-red);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.nav-link.btn:hover {
    background: var(--dark-red);
    border-color: var(--dark-red);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.navbar-toggler {
    border-color: var(--primary-red);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(220, 20, 60, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===================================
   Hero Section
   =================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: #000000;
    color: var(--white);
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--white);
}

.hero-buttons {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-start;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-red);
    border: 2px solid var(--white);
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: var(--white);
    font-size: 2rem;
    text-decoration: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   Section Styles
   =================================== */

.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.title-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--silver));
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.title-divider-white {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--white), var(--silver));
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
}

.section-subtitle-left {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

/* ===================================
   About Section
   =================================== */

#about {
    background-color: #000000 !important;
    position: relative;
    z-index: 1;
}

.about-image-wrapper {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    background: #000000;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.about-image-placeholder:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: white;
    margin-bottom: 1rem;
}

.mission-vision {
    margin-top: 2rem;
}

.mv-card {
    display: flex;
    align-items: start;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #000000;
    color: white;
    border-radius: 10px;
    border-left: 4px solid var(--primary-red);
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateX(10px);
}

.mv-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.mv-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.mv-content p {
    color: var(--gray);
    margin: 0;
}

/* ===================================
   Feature Cards (Why Choose Us)
   =================================== */

.feature-card {
    background: #333333;
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(360deg) scale(1.1);
}

.feature-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

/* ===================================
   Product Cards
   =================================== */

.products-section {
    background: url('imagelogo.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.products-section .container {
    position: relative;
    z-index: 2;
}

.product-card {
    background: #000000;
    color: white;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid #000000;
    max-width: 500px;
    margin: 0 auto;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
}

.product-image-container {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.product-description {
    color: white;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.product-features {
    list-style: none;
    padding: 0;
}

.product-features li {
    color: white;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.product-actions {
    text-align: center;
}

.product-actions .btn {
    background: var(--primary-red);
    border: 2px solid var(--primary-red);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.product-actions .btn:hover {
    background: var(--dark-red);
    border-color: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
    color: var(--white);
}

/* ===================================
   Fragrance Cards
   =================================== */

.fragrance-card {
    background: #333333;
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.fragrance-card:hover {
    transform: scale(1.05);
    border-color: var(--primary-red);
}

.fragrance-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.fragrance-card:hover .fragrance-icon {
    transform: rotate(360deg);
}

.black-ice {
    background: linear-gradient(135deg, #1a1a1a, #4a4a4a);
}

.ocean-breeze {
    background: linear-gradient(135deg, #00A8CC, #0077B6);
}

.lemon-zest {
    background: linear-gradient(135deg, #FFD60A, #FFA500);
}

.lavender-mist {
    background: linear-gradient(135deg, #9D84B7, #C8B6E2);
}

.rose-bloom {
    background: linear-gradient(135deg, #FF006E, #FF4D8A);
}

.fragrance-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.fragrance-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.fragrance-note {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fragrance-icon-text {
    font-size: 3rem;
}

.fragrance-note p {
    color: var(--white);
}

/* ===================================
   Usage & Quality Section
   =================================== */

.usage-list {
    list-style: none;
    padding: 0;
}

.usage-list li {
    padding: 0.8rem 0;
    color: var(--gray);
    font-size: 1rem;
    display: flex;
    align-items: start;
}

.usage-list li i {
    color: var(--primary-red);
    margin-right: 1rem;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.quality-badge {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.3);
}

.quality-badge i {
    font-size: 2rem;
    margin-right: 1rem;
}

/* ===================================
   Contact Section
   =================================== */

.contact-section {
    background: #000000;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>');
    background-size: cover;
    opacity: 0.3;
}

.contact-card {
    background: #333333;
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1rem;
}

.contact-card h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 0.8rem;
}

.contact-card a {
    color: var(--primary-red);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary-red);
}

.contact-card p {
    color: var(--gray);
    margin: 0;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: var(--black);
    color: var(--white);
    padding: 3rem 0 2rem;
}

.footer-bottom {
    border-top: 1px solid var(--gray);
    padding-top: 1.5rem;
    color: var(--silver);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-content a {
    color: var(--primary-red);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-content a:hover {
    color: var(--light-red);
}

.social-links-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-link-small {
    width: 35px;
    height: 35px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-link-small i {
    color: inherit;
    font-size: 1.1rem;
    display: block;
}

.social-link-small:hover {
    background: var(--white);
    color: var(--primary-red);
    transform: translateY(-2px);
}

/* ===================================
   Scroll to Top Button
   =================================== */

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--dark-red);
    transform: translateY(-5px);
}

/* ===================================
   Responsive Styles
   =================================== */

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        color: var(--white);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .navbar-nav {
        background: var(--white);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-link {
        margin: 0.3rem 0;
    }
    
    .nav-link.btn {
        margin: 0.5rem 0;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        color: var(--white);
    }
    
    .hero-text {
        font-size: 1rem;
        color: var(--white);
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin: 0 !important;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle-left {
        font-size: 1.5rem;
    }
    
    .about-image-wrapper {
        height: 300px;
        margin-bottom: 2rem;
    }
    
    .mv-card {
        flex-direction: column;
        text-align: center;
    }
    
    .mv-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .navbar-logo {
        height: 35px;
        max-width: 120px;
    }
    
    .navbar-toggler {
        border: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-links-inline {
        justify-content: center;
    }
    
    .scroll-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
        font-size: 1.2rem;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.8rem;
        color: var(--white);
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .fragrance-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ===================================
   Animation Classes
   =================================== */

.fade-in {
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.slide-in-left {
    animation: slideInLeft 0.8s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.8s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===================================
   Utility Classes
   =================================== */

.text-gradient {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
}

.bg-gradient-silver {
    background: linear-gradient(135deg, var(--silver), var(--dark-silver));
}

/* ===================================
   Gallery Styles
   =================================== */

.gallery-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 0.375rem;
}

@media (max-width: 767px) {
    .gallery-img {
        height: 200px;
        width: 100%;
        object-fit: cover;
    }
}

@media (max-width: 575px) {
    .gallery-img {
        height: 180px;
        width: 100%;
        object-fit: cover;
    }
}
