:root {
    --primary-color: #10B981;
    /* Premium Emerald */
    --primary-glow: rgba(16, 185, 129, 0.4);
    --secondary-color: #047857;
    --dark-color: #0F172A;
    /* Deep slate */
    --darker-color: #0B0F19;
    /* Deeper slate for contrast */
    --light-color: #F8FAFC;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --font-playfair: 'Playfair Display', serif;
    --transition-smooth: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Bootstrap Color Overrides */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-primary:hover {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}

.btn-outline-primary {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
}

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
    position: relative;
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.container,
.container-fluid {
    padding-right: 15px !important;
    padding-left: 15px !important;
}

body {
    font-family: var(--font-main);
    color: var(--dark-color);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.font-playfair {
    font-family: var(--font-playfair);
    font-weight: 700;
}

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

.italic {
    font-style: italic;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-scrolled {
    background: rgba(255, 255, 255, 1);
    padding: 0.8rem 0 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.pt-nav-offset {
    padding-top: 130px !important;
}

.nav-link {
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .pt-nav-offset {
        padding-top: 100px !important;
    }
}

@media (max-width: 576px) {
    .navbar-brand span {
        font-size: 1.1rem !important;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .display-3 {
        font-size: 2.2rem !important;
    }
}

/* Cards & Elements */
.premium-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.img-reveal-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.img-reveal-wrapper img {
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.img-reveal-wrapper:hover img {
    transform: scale(1.1);
}

/* Buttons */
.btn-dark {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
    transition: var(--transition-smooth);
}

.btn-dark:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* Menu Section */
.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 1rem 0;
    border-bottom: 1px dashed #ddd;
}

.menu-dot {
    flex-grow: 1;
    border-bottom: 1px dashed #ddd;
    margin: 0 10px;
}

.price {
    font-weight: 700;
    color: var(--secondary-color);
}

/* Footer Socials */
.footer-socials a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
    color: var(--white);
    font-size: 1.2rem;
}

.footer-socials a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--primary-glow);
    border-color: var(--primary-color);
    color: var(--white);
}

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

.hover-white:hover {
    color: var(--white) !important;
}

/* Glassmorphism Classes */
.glass-panel {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.glass-panel-light {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.bg-dark-premium {
    background-color: var(--dark-color);
    color: var(--white);
}

.bg-darker-premium {
    background-color: var(--darker-color);
    color: var(--white);
}

/* Animations added specific to home overhaul */
.pulse-glow {
    animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.blob-shape {
    position: absolute;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.5;
    animation: floatingBlob 10s ease-in-out infinite alternate;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(16, 185, 129, 0.3);
    border-radius: 50%;
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(4, 120, 87, 0.2);
    border-radius: 50%;
}

@keyframes floatingBlob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, -50px) scale(1.1);
    }
}

/* Section Dividers */
.section-divider {
    height: 100px;
    background-color: var(--dark-color);
    clip-path: polygon(0 0, 100% 100%, 100% 0);
}

.section-divider.bottom {
    clip-path: polygon(0 100%, 100% 0, 0 0);
}