@font-face {
    font-family: "OldschoolGrotesk";
    src: url("../fonts/OldschoolGrotesk-NormalRegular.otf") format("opentype");
    font-display: swap;
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "OrdinaryBoys";
    src: url("../fonts/OrdinaryBoys-Sans.otf") format("opentype");
    font-display: swap;
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "OldschoolGrotesk", sans-serif;
    background: #fff;
}

/* ===== DERMATIO NAVBAR STARTS===== */
.dermatio-navbar {
    background: white;
    padding: 0 60px;
    height: 90px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
}

/* Logo */
.dermatio-navbar .logo {
    height: 40px;
}

/* Center menu */
.dermatio-nav {
    display: flex;
    align-items: center;
    gap: 55px;
}

/* Links */
.dermatio-nav .nav-link {
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.2px;
    color: #333;
    position: relative;
    padding: 6px 0;
}

/* Underline hover */
.dermatio-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 1px;
    background: #1f1f1f;
    transform: translateX(-50%);
    transition: 0.3s ease;
}

.dermatio-nav .nav-link:hover::after {
    width: 100%;
}

/* Dropdown */
.dermatio-navbar .dropdown-menu {
    background: white;
    border: none;
    border-radius: 0;
    padding: 10px 0;
    min-width: 220px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.dermatio-navbar .dropdown-item {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 10px 20px;
    color: #222;
}

.dermatio-navbar .dropdown-item:hover {
    background: rgba(0, 0, 0, 0.04);
}

/* Remove bootstrap arrow */
.navbar .dropdown-toggle::after {
    display: none;
}

/* Right icons */
.nav-icons {
    display: flex;
    gap: 25px;
    font-size: 22px;
    color: #111;
}

.nav-icons i {
    cursor: pointer;
    transition: 0.3s ease;
}

.nav-icons i:hover {
    opacity: 0.6;
}

/* ===== MOBILE OFFCANVAS ===== */
.dermatio-offcanvas {
    background: white;
    width: 80%;
}

.dermatio-offcanvas .logo {
    height: 40px;
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav a {
    display: block;
    padding: 15px 0;
    font-size: 14px;
    letter-spacing: 0.08em;
    color: #111;
    text-decoration: none;
}

.mobile-nav ul {
    list-style: none;
    padding-left: 15px;
    background: white;
}

.mobile-nav ul a {
    font-size: 13px;
    padding: 12px 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .dermatio-navbar {
        padding: 12px 16px;
    }
}

/* ===== DERMATIO NAVBAR ENDS===== */

/* ===== COMING SOON STARTS===== */
.coming-soon {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #f8efe4;
}

.coming-soon h1 {
    font-family: "OrdinaryBoys", sans-serif !important;
    font-size: 120px;
    font-weight: 100;
    color: #2f2f2f;
    letter-spacing: 0px;
    margin-top: -250px;
}

.line {
    width: 120px;
    height: 3px;
    background: #2f2f2f;
    margin: 25px 0 30px;
}

.tagline {
    font-size: 20px;
    color: #2f2f2f;
    letter-spacing: 1px;
    font-weight: 500;
}

.copyright {
    position: absolute;
    bottom: 40px;
    font-size: 14px;
    color: #2f2f2f;
    font-weight: bold;
}

/* ===== Coming Soon Responsive ===== */

/* Tablets (≤ 991px) */
@media (max-width: 991px) {
    .coming-soon h1 {
        font-size: 80px;
        margin-top: -150px;
    }

    .line {
        width: 90px;
        height: 2px;
        margin: 20px 0 25px;
    }

    .tagline {
        font-size: 18px;
        letter-spacing: 0.8px;
    }

    .copyright {
        font-size: 13px;
        bottom: 25px;
    }
}

/* Mobile (≤ 576px) */
@media (max-width: 576px) {
    .coming-soon h1 {
        font-size: 48px;
        margin-top: -80px;
        line-height: 1.1;
        text-align: center;
    }

    .line {
        width: 70px;
        height: 2px;
        margin: 15px auto 20px;
    }

    .tagline {
        font-size: 16px;
        letter-spacing: 0.6px;
        text-align: center;
        padding: 0 15px;
    }

    .copyright {
        font-size: 12px;
        bottom: 18px;
        text-align: center;
        width: 100%;
        left: 0;
    }
}

/* ===== COMING SOON ENDS===== */