/* SMOOTH SCROLLING */
html {
    scroll-behavior: smooth;
}

body, html {
    margin: 0;
    padding: 0;
}

main {
    height: 100vh;
    width: 100%; /* better than 100vw (prevents horizontal scroll issues) */

    background-image: url("hero3.png");
    background-size: cover;
    background-position: center;     /* important */
    background-repeat: no-repeat;    /* prevents tiling */

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    color: white;
     font-family: "Nosifer", sans-serif;
  font-weight: 400;
  font-style: normal;
}
/* NAVBAR ON HERO */
nav {
    position: absolute;       /* sit on top of main */
    top: 0;
    left: 0;
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 40px;
    box-sizing: border-box;

    color: white;
    z-index: 10;      
    font-family: "Nosifer", sans-serif;
  font-weight: 400;
  font-style: normal;       /* above overlay */
}

/* Transparent background for effect */
nav {
    background: rgba(0, 0, 0, 0.2);   /* subtle see-through */
    backdrop-filter: blur(5px);       /* modern frosted look */
}

/* Logo */
nav .logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
}

/* Navigation Container */
.nav-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Menu */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Links */
 a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

/* Hover effect */
 a:hover {
    opacity: 0.7;
}

/* Optional CTA style */
nav a.cta {
    padding: 8px 16px;
    background: white;
    color: black;
    border-radius: 4px;
    font-weight: bold;
}
/* HERO TEXT */
#hero-text {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    text-align: center;
    max-width: 90vw;
    margin: 0 auto;
}

#hero-text h1 {
    font-size: clamp(2rem, 8vw, 4rem);
    line-height: 1.1;
    margin: 0;
}

#hero-space {
    height: clamp(50px, 10vh, 100px);
    width: 50vw;
}

.hero-cta {
    color: whitesmoke;
    text-decoration: none;
    padding: 12px 24px;
    background: white;
    color: black;
    border-radius: 8px;
    font-weight: bold;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    display: inline-block;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.hero-sub {
    font-size: 1.2rem;
    margin-top: 10px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    
}
.vandaag {
    color: #ff6347; /* tomato red for emphasis */
}
.over-ons-text {
    display: block;
    font-family: "Nosifer", sans-serif;
}
.nosifer-regular {
    font-family: "Nosifer", sans-serif;
    font-weight: 400;
    font-style: normal;
}
#over-ons {
    padding: 60px 20px;
    background: #111;
    text-align: center;
    color: white;
    font-weight: 400;
    font-style: normal;
    background-image: url("rose.png");
    background-size: cover;
    background-position: center;
}
.over-ons-text {
    display: block;
    font-family: "Nosifer", sans-serif;
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: white;
}
.card-container {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 30px;
    flex-wrap: wrap;
    padding: 0 10px;
}
.over-ons-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 28px 24px;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    width: min(320px, 100%);
    color: #111;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.over-ons-card .card-icon {
    font-size: 2.2rem;
    color: #ff6347;
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: rgba(255, 99, 71, 0.12);
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands";
}
.over-ons-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
    border-color: rgba(255, 255, 255, 0.35);
}
.over-ons-card h4 {
    margin: 0 0 12px;
    font-size: 1.3rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}
.over-ons-card h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 48px;
    height: 4px;
    border-radius: 999px;
    background: #ff6347;
}
.over-ons-card p {
    margin: 0;
    line-height: 1.7;
    font-size: 1rem;
    color: #333;
}
@media (max-width: 840px) {
    .card-container {
        gap: 18px;
    }
}
@media (max-width: 640px) {
    nav {
        padding: 18px 20px;
    }
    .card-container {
        flex-direction: column;
        align-items: center;
    }
    .over-ons-card {
        width: 100%;
        max-width: 420px;
    }
}

/* TABLET RESPONSIVE */
@media (max-width: 1024px) {
    main {
        height: 90vh;
        min-height: 600px;
    }

    nav {
        padding: 20px 30px;
    }

    nav ul {
        gap: 20px;
    }

    nav a {
        font-size: 0.9rem;
    }

    .card-container {
        gap: 20px;
        padding: 0 15px;
    }

    .over-ons-card {
        width: min(280px, 100%);
        padding: 24px 20px;
    }

    .contact-container {
        gap: 40px;
        padding: 0 20px;
    }

    .contact-message h2 {
        font-size: 2.2rem;
    }

    .contact-form {
        padding: 30px 25px;
    }
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    main {
        height: 85vh;
        min-height: 500px;
        padding: 80px 20px 20px;
    }

    nav {
        padding: 15px 20px;
        position: fixed;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        width: 100%;
        z-index: 1000;
    }

    nav .logo {
        font-size: 1.2rem;
    }

    nav ul {
        gap: 15px;
    }

    nav a {
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    nav a.cta {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    #hero-text h1 {
        font-size: clamp(1.8rem, 10vw, 3rem);
    }

    #hero-space {
        height: 40px;
    }

    .hero-cta {
        padding: 14px 28px;
        font-size: 1rem;
    }

    #over-ons {
        padding: 50px 15px;
    }

    .over-ons-text {
        font-size: 1.8rem;
    }

    .card-container {
        gap: 20px;
    }

    .over-ons-card {
        width: 100%;
        max-width: 380px;
        padding: 20px 18px;
    }

    .over-ons-card h4 {
        font-size: 1.2rem;
    }

    .contact-container {
        flex-direction: column;
        gap: 40px;
    }

    .contact-message {
        padding-right: 0;
        text-align: center;
    }

    .contact-message h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .contact-form h3 {
        font-size: 1.5rem;
    }

    .form-group input {
        padding: 14px 16px;
        font-size: 1rem;
    }

    .submit-btn {
        padding: 16px;
        font-size: 1.1rem;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    main {
        height: 80vh;
        min-height: 400px;
        padding: 100px 15px 15px;
    }

    nav {
        padding: 12px 15px;
    }

    nav .logo {
        font-size: 1.1rem;
    }

    .nav-container {
        gap: 15px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .nav-menu a {
        font-size: 1rem;
        padding: 10px 20px;
        display: block;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    #hero-text h1 {
        font-size: clamp(1.5rem, 12vw, 2.5rem);
        line-height: 1.2;
    }

    .hero-cta {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    #over-ons {
        padding: 40px 15px;
    }

    .over-ons-text {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .card-container {
        gap: 15px;
    }

    .over-ons-card {
        padding: 18px 16px;
        border-radius: 12px;
    }

    .over-ons-card .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .over-ons-card h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .over-ons-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    #contact {
        padding: 50px 15px;
    }

    .contact-message h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .contact-message p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .contact-form {
        padding: 25px 15px;
        border-radius: 12px;
    }

    .contact-form h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.2rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input {
        padding: 12px 14px;
        font-size: 0.95rem;
    }

    .submit-btn {
        padding: 14px;
        font-size: 1rem;
    }
}

/* CONTACT SECTION */
#contact {
    padding: 80px 20px;
    background: #f8f8f8;
    color: #111;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.contact-message {
    flex: 1;
    padding-right: 40px;
}

.contact-message h2 {
    font-family: "Nosifer", sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #111;
    letter-spacing: 1px;
}

.contact-message p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.contact-message strong {
    color: #ff6347;
}

.contact-form {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-family: "Nosifer", sans-serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #111;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #ff6347;
    box-shadow: 0 0 0 3px rgba(255, 99, 71, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: #ff6347;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: "Nosifer", sans-serif;
}

.submit-btn:hover {
    background: #e55a42;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }

    .contact-message {
        padding-right: 0;
        text-align: center;
    }

    .contact-message h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 30px 20px;
    }
}