:root {
    --primary-color: #ff6b6b;
    /* Soft Red/Pink for Ice Cream vibe */
    --secondary-color: #4ecdc4;
    /* Minty Green */
    --dark-color: #2d3436;
    --light-color: #f7f1e3;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--dark-color);
    background-color: #fff;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
.navbar-brand {
    font-family: var(--font-heading);
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.navbar {
    padding-left: 20px;
    padding-right: 20px;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color);
    transition: color 0.3s;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('assets/images/hero-bg.png') no-repeat center center/cover;
    height: 100vh;
    color: white;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #ee5253;
    border-color: #ee5253;
    transform: translateY(-2px);
}

.hover-card {
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

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

.hover-card img {
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
}

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

section {
    position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ee5253;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
        /* Reduce height on mobile */
        background-attachment: scroll;
        /* Fix background attachment issue on some mobile browsers */
    }

    .display-3 {
        font-size: 2.5rem;
        /* Smaller heading */
    }

    .lead {
        font-size: 1.1rem;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    section {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
}

/* Contact Section Styles */
#contact .card {
    border: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
}

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

#contact .form-floating>.form-control:focus~label,
#contact .form-floating>.form-control:not(:placeholder-shown)~label {
    color: var(--primary-color);
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

#contact .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 107, 0.25);
}

#contact .btn-primary {
    background-color: var(--primary-color);
    border: none;
    transition: all 0.3s ease;
}

#contact .btn-primary:hover {
    background-color: #ee5253;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(238, 82, 83, 0.4);
}