/* =================== BASE STYLES =================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, #fefefe 0%, #fff5f8 100%);
}

:root {
    --primary-color: #ff5975;
    --primary-light: #ff7f96;
    --primary-dark: #e6405c;
    --secondary-color: #ffc3d1;
    --tertiary-color: #ffebf0;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #fff8fb;
    --white: #ffffff;
    --shadow: rgba(255, 89, 117, 0.15);
    --soft-shadow: rgba(255, 89, 117, 0.08);
}

.text-primary {
    color: var(--primary-color) !important;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border: none;
    color: var(--white);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 89, 117, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 89, 117, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 89, 117, 0.3);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    text-align: center;
}

/* =================== NAVIGATION =================== */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 30px var(--soft-shadow);
    border-bottom: 1px solid rgba(255, 89, 117, 0.1);
}

/* Desktop Navigation */
.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar-left,
.navbar-right {
    flex: 1;
    display: flex;
}

.navbar-left {
    justify-content: flex-end;
    padding-right: 2rem;
}

.navbar-right {
    justify-content: flex-start;
    padding-left: 2rem;
}

.navbar-center {
    flex: 0 0 auto;
    text-align: center;
}

.navbar-left .navbar-nav,
.navbar-right .navbar-nav {
    flex-direction: row;
    margin: 0;
    align-items: center;
}

.navbar-brand {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
}

.navbar-brand:hover {
    /* background: linear-gradient(45deg, rgba(255, 89, 117, 0.15), rgba(255, 195, 209, 0.15)); */
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.navbar-brand i {
    margin-right: 0.7rem;
    font-size: 2.2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile Navigation */
.mobile-nav {
    padding: 0.5rem 0;
}

.navbar-brand-mobile {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    text-decoration: none;
    padding: 0.3rem 1rem;
}

.navbar-brand-mobile i {
    margin-right: 0.5rem;
    font-size: 1.7rem;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.7rem 1.2rem !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 70%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(255, 89, 117, 0.08);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px var(--shadow);
    border-radius: 15px;
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
}

.dropdown-item {
    padding: 0.7rem 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item.active {
    background: rgba(255, 89, 117, 0.1);
    color: var(--primary-color);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    background: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.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='%23ff5975' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Menu Styling */
#navbarMobile {
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid rgba(255, 89, 117, 0.1);
    margin-top: 1rem;
    padding: 1rem 0;
    border-radius: 0 0 15px 15px;
}

#navbarMobile .navbar-nav .nav-link {
    text-align: center;
    margin: 0.2rem 0;
    border-radius: 15px;
    padding: 0.8rem 1rem !important;
}

/* =================== HERO SECTION =================== */
.hero-section {
    margin-top: 76px;
    position: relative;
}

.hero-slide {
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}



.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.8;
}

.hero-content .btn {
    animation: fadeInUp 1s ease 0.4s both;
    font-size: 1.1rem;
    padding: 15px 35px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 6%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    width: 3.5rem;
    height: 3.5rem;
    box-shadow: 0 4px 15px rgba(255, 89, 117, 0.4);
}

.carousel-indicators button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: var(--primary-color);
    opacity: 0.6;
    box-shadow: 0 2px 8px rgba(255, 89, 117, 0.3);
}

.carousel-indicators button.active {
    opacity: 1;
    transform: scale(1.3);
}

/* =================== PRODUCTS SECTION =================== */
.products-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #fff0f5 100%);
    padding: 120px 0;
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(255, 89, 117, 0.03));
}

.product-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 45px var(--soft-shadow);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid rgba(255, 89, 117, 0.1);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(255, 89, 117, 0.25);
    border-color: var(--primary-color);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(1.1) saturate(1.1);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, var(--white), #f8f9fa);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-card:hover .product-overlay {
    opacity: 1;
    transform: scale(1.1);
}

.product-overlay i {
    color: var(--primary-color);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.product-overlay:hover i {
    transform: scale(1.2);
}

.product-content {
    padding: 2rem;
}

.product-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.product-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.product-price {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =================== ABOUT SECTION =================== */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--tertiary-color) 100%);
}

.about-content h2 {
    text-align: left;
}

.about-content h2::after {
    left: 0;
    transform: none;
}

.about-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.8rem;
    line-height: 1.9;
}

.about-features {
    margin-top: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: linear-gradient(45deg, rgba(255, 89, 117, 0.08), rgba(255, 195, 209, 0.08));
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 89, 117, 0.1);
}

.feature-item:hover {
    background: linear-gradient(45deg, rgba(255, 89, 117, 0.12), rgba(255, 195, 209, 0.12));
    transform: translateX(10px);
    border-color: var(--primary-color);
}

.feature-item i {
    font-size: 1.8rem;
    margin-right: 1.5rem;
}

.feature-item span {
    font-weight: 600;
    color: var(--text-dark);
}

.about-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 25px 70px var(--soft-shadow);
    border: 3px solid rgba(255, 89, 117, 0.1);
}

/* =================== FOOTER =================== */
.footer-section {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a252f 100%);
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
}

.footer-brand {
    padding-right: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2.5rem;
    margin-right: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: #bbb;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.footer-title {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 20px;
}

.footer-links a:hover::before {
    left: 5px;
}

.social-links a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    margin: 0 0.7rem 0.5rem 0;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 89, 117, 0.3);
}

.social-links a:hover {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 89, 117, 0.4);
}

.footer-divider {
    border-color: #444;
    margin: 3rem 0 2rem;
    opacity: 0.5;
}

.footer-copyright {
    color: #aaa;
    margin: 0;
    font-size: 0.95rem;
}

.footer-info {
    color: #ccc;
    font-size: 0.95rem;
}

.footer-info i {
    color: var(--primary-color);
}

/* =================== ANIMATIONS =================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* =================== RESPONSIVE =================== */
@media (max-width: 991px) {
    /* Desktop navigation tamamen gizle */
    .navbar-content {
        display: none !important;
    }

    /* Mobile navigation göster */
    .mobile-nav {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .hero-slide {
        height: 75vh;
        min-height: 550px;
    }

    .navbar-brand-mobile {
        font-size: 1.3rem;
        padding: 0.3rem 0.8rem;
    }

    .navbar-brand-mobile i {
        font-size: 1.5rem;
    }

    .about-content {
        margin-bottom: 3rem;
    }

    .footer-brand {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .products-section,
    .about-section {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .product-content {
        padding: 1.5rem;
    }

    .feature-item {
        padding: 1rem;
    }

    .navbar-brand-mobile {
        font-size: 1.2rem;
        padding: 0.2rem 0.7rem;
    }

    .navbar-brand-mobile i {
        font-size: 1.3rem;
        margin-right: 0.4rem;
    }
}
