* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-height: 100vh;
}

:root {
    --primary: #B5005B;
    --primary-h: #8C0047;
    --dark: #2D1B2E;
    --accent: #F4A261;
    --light: #FFF0F5;
    --muted: #7a6070;
}

.navbar {
    width: 100%;
    height: 70px;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 12px rgba(45, 27, 46, 0.10);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo-div h1 {
    font-size: 24px;
    color: var(--dark);
}

.logo-span {
    color: var(--primary);
    font-style: italic;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
}

.hero-section {
    min-height: 100vh;
    padding: 70px 10% 0;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg,var(--dark) 0%,#4a1535 60%,#2D1B2E 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.08;
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.hero-content h1 {
    font-size: 58px;
    line-height: 1.15;
    letter-spacing: -1px;
    font-weight: 300;
    color: #fff;
}

.hero-content h1 span {
    color: var(--accent);
    font-style: italic;
}

.hero-content p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.btn-main {
    display: inline-block;
    margin-top: 28px;
    padding: 13px 32px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-main:hover {
    background: var(--primary-h);
    transform: translateY(-2px);
}

.section-padding {
    padding: 80px 10%;
    text-align: center;
    background: #fff;
}

.section-title {
    font-size: 32px;
    margin-bottom: 40px;
    position: relative;
    color: var(--dark);
}

.section-title::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--accent);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.product-container {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.product-card {
    padding: 20px;
    border-radius: 15px;
    background: #fff;
    border: 1px solid var(--light);
    box-shadow: 0 4px 16px rgba(45, 27, 46, 0.07);
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(181, 0, 91, 0.10);
}

.product-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.product-card h3 {
    margin-top: 10px;
    color: var(--dark);
}

.product-card p {
    font-size: 14px;
    color: var(--muted);
}

.price {
    display: block;
    margin: 14px 0;
    font-weight: bold;
    color: var(--primary);
}

.buy-btn {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 6px;
    background: var(--dark);
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.buy-btn:hover {
    background: var(--primary);
}

.contact-bg {
    background: var(--light) !important;
}

.contactsection {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-around;
    align-items: stretch;
}

.contact-info,
.contact-form {
    width: 45%;
    padding: 30px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f3c1d3;
    box-shadow: 0 4px 16px rgba(45, 27, 46, 0.07);
}

.contact-info h2,
.contact-form h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark);
}
.contact-form p {
    margin-bottom: 10px;
}
.contact-info p{
    color: var(--muted);
}

.info-card {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--dark);
}

.info-card i {
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    flex-shrink: 0;
}

.map-box iframe {
    width: 100%;
    height: 170px;
    border: none;
    border-radius: 12px;
}

.input,
.textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 16px;
    border-radius: 12px;
    border: 1px solid #e8ccd6;
    background: #fafafa;
    color: var(--dark);
    transition: 0.3s;
}

.input:focus,
.textarea:focus {
    outline: none;
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(181, 0, 91, 0.08);
}

.textarea {
    height: 120px;
    resize: none;
}

.send-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.send-btn:hover {
    background: var(--primary-h);
}

footer {
    padding: 40px 0;
    text-align: center;
    background: var(--dark);
    color: white;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.paragraph-div p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
}

.social-links a {
    margin: 0 10px;
    font-size: 22px;
    color: rgba(255, 255, 255, 0.5);
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--accent);
}

@media (max-width: 780px) {

    .hero-content h1 {
        font-size: 38px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 20px 0;
        text-align: center;
        background: white;
        box-shadow: 0 5px 10px rgba(45, 27, 46, 0.10);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
    }
    .contact-info,
    .contact-form {
        width: 100%;
    }
}