:root {
    --primary: #dd5f7b;
    --dark: #0c0c0c;
    --light: #f4f4f4;
    --white: #ffffff;
    --font: "Inter", sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font);
    margin: 0;
    line-height: 1.7;
    background: var(--light);
    color: var(--dark);
}

/* Navbar */
.navbar-custom {
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
}

.navbar-brand {

    img {
        /* height: 50px; */
        width: min(20vw, 150px);
        margin-right: .5rem;

    }
    span {
       color: #c6586a !important;
        font-weight: bold;
    
    }
}


/* Custom hamburger icon */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler-icon {
    background-image: none;
    /* remove bootstrap svg */
    width: 28px;
    height: 20px;
    position: relative;
    display: inline-block;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #000;
    /* bar color */
    border-radius: 2px;
}

/* top bar */
.navbar-toggler-icon::before {
    top: 0;
}

/* middle bar */
.navbar-toggler-icon span {
    top: 50%;
    transform: translateY(-50%);
}

/* bottom bar */
.navbar-toggler-icon::after {
    bottom: 0;
}

/* Hero */
.hero img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    filter: brightness(75%);
}

/* Sections */
.section-padding {
    padding: clamp(3rem, 6vw, 6rem) 0;
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 3rem;
}

/* About */
.about-img {
    border-radius: 1.5rem;
}

.about h2 span {
    color: var(--primary);
}

.about-list li {
    list-style: none;
    margin-bottom: .75rem;
}

.about-list i {
    color: var(--primary);
    margin-right: .5rem;
}

/* Services */
.service-card {
    background: var(--white);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: transform .3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-content {
    padding: 1.5rem;
}

/* Footer */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

footer ul {
    padding: 0;
    list-style: none;
}

footer a {
    color: var(--white);
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: .9rem;
}

/* Floating Contact */
.contact-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    color: white;
    font-size: 1.4rem;
}

.contact-form {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    width: 320px;
    display: none;
}

.contact-form.active {
    display: block;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: .8s ease;
}

.reveal.active {
    opacity: 1;
    transform: none;
}

.developer-credit {
    text-align: center;
    font-size: 0.85rem;
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
}

.developer-credit a {
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    position: relative;
}

.developer-credit a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 1px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.developer-credit a:hover::after {
    width: 100%;
}