:root {
    --primary-purple: #6E5084;
    --primary-hover: #89709C;
    --light-purple-bg: #F7F1FC;
    --input-hover-teal: #F5FFF9;
    --text-dark: #2d2d2d;
    --text-muted: #6c757d;
    --white: #ffffff;
    --light-purple-text: #CDB2E2;
}

html {
    scroll-behavior: smooth;
}

body,
button,
input,
select,
textarea,
.nav-link {
    font-family: 'Bitter', serif;
    color: var(--text-dark);
    background-color: var(--light-purple-bg) !important;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.section-title,
.navbar-brand {
    font-family: 'Young Serif', serif;
    font-weight: 400;
}

h5,
h6 {
    font-family: 'Bitter', serif;
}

.small {
    font-size: 16px !important;
}

.text-purple {
    color: var(--primary-purple);
}

.bg-light-purple {
    background-color: var(--light-purple-bg);
}

.light-purple-text {
    color: var(--light-purple-text);
}

/* Navbar */
.navbar {
    padding-top: 2vw;
    padding-bottom: 2vw;
    padding-left: 4vw;
    padding-right: 4vw;
}

.navbar-brand {
    font-size: 25px;
}

.nav-link {
    color: var(--primary-purple) !important;
    font-size: 0.95rem;
    font-weight: 400;
}

.nav-link:hover {
    color: var(--primary-purple) !important;
}

/* Buttons */
.btn {
    padding: 10px 25px !important;
}

.btn-purple {
    background-color: var(--primary-purple) !important;
    color: var(--white) !important;
    border: none;
    transition: all 0.3s ease;

}

.btn-purple:hover {
    background-color: var(--primary-hover) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    height: 163vh;
    background: url('assets/hero.webp');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: top center;
    position: relative;
    /* margin: 0px 40px; */
}

.hero-overlay {
    mix-blend-mode: multiply;
    opacity: 1;
    background-color: hsla(274.62, 24.53%, 41.57%, 0.51);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-logo {
    max-width: 150px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

/* Sections */
.section-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--primary-purple);
    text-align: center;
}

.section-title-lg {
    font-size: clamp(2.5rem, 8vw, 3.7rem);
    color: var(--primary-purple);
    text-align: center;
}

/* Product Circle */
.product-circle-wrapper {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-circle-wrapper:hover {
    border-color: var(--primary-purple);
    transform: translateY(-5px);
}

.product-circle-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Explore Cards */
.explore-card {
    overflow: hidden;
    height: 100%;
}

/* .explore-card:hover {
    transform: translateY(-10px);
} */

.card-img-wrapper {
    height: 250px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About Section */
.about-img-frame {
    position: relative;
    padding: 15px;
}

.about-img-frame::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 85%;
    border: 5px solid var(--primary-purple);
    z-index: -1;
    border-radius: 10px;
}

/* Social Icons */
.social-icon-box {
    background: var(--white);
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.social-icon-box:hover {
    transform: rotate(10deg) scale(1.1);
}

/* Contact Form */

.form-control {
    border: 1px solid var(--primary-purple);
    padding: 10px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
    background-color: var(--light-purple-bg);
}

.form-control:hover {
    background-color: var(--input-hover-teal);
    border-color: #d1e7dd;
}

.form-control:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 0.25rem rgba(110, 80, 132, 0.1);
    background-color: var(--white);
}

.form-control::placeholder {
    color: var(--light-purple-text);
    font-size: 12px;
}

/* Sections Backgrounds */
section {
    background-color: var(--light-purple-bg);
}


/* Footer */
footer {
    background-color: var(--light-purple-bg);
    border-top: 1px solid rgba(110, 80, 132, 0.1);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section {
        min-height: 60vh;
    }
}

@media (max-width: 767px) {
    .navbar {
        padding: 1rem;
    }

    .hero-section {
        min-height: 50vh;
    }
}