/*
  File Name: custom.css
*/

/* =========================
   GLOBAL RESET / SAFETY
========================= */

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden; /* prevents horizontal scroll */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================
   CARDS
========================= */

.card {
    border: none;
}

/* =========================
   NAVBAR
========================= */

.navbar {
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Logo */
.logo-img {
    height: 55px;   /* balanced size */
    width: auto;
    transition: transform 0.3s ease;
}

/* Logo hover */
.logo-img:hover {
    transform: scale(1.05);
}

/* Align logo */
.navbar-brand {
    display: flex;
    align-items: center;
}

/* =========================
   HERO SECTION (MODERN)
========================= */

.hero-section {
    height: 90vh;
    background: url('/images/hero/hero-home-02-1920x1080-jpg.jpg') center center / cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

/* Overlay for readability */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.65),
        rgba(0, 123, 255, 0.35)
    );
    z-index: 1;
}

/* Content above overlay */
.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Hero text styling */
.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Button styling */
.hero-section .btn {
    padding: 10px 25px;
    font-weight: 600;
}

/* =========================
   SECTION GENERAL
========================= */

section {
    overflow: hidden;
}

/* =========================
   ANIMATION (SUBTLE)
========================= */

.hero-section {
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}