/* ==========================================================================
   RESET & GLOBAL
========================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html,
body {
  min-height: 100%;
}

:root {
  --primary-color: #0f172a;
  --accent-color: #d97706;
  --text-color: #334155;
  --light-bg: #f1f5f9;
  --white: #ffffff;
}

body {
  background-color: var(--light-bg);
  color: var(--text-color);
  line-height: 1.6;

  display: flex;
  flex-direction: column;
}


/* ==========================================================================
   NAVIGASI GLOBAL
========================================================================== */

header {
  background-color: var(--primary-color);
  padding: 20px 0;

  position: sticky;
  top: 0;
  z-index: 1000;

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.nav-container {
  width: 100%;
  padding: 0 60px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  color: var(--white);
}

.logo span {
  color: var(--accent-color);
}

nav {
  display: flex;
  align-items: center;
}

nav a {
  margin-left: 25px;

  color: #cbd5e1;
  text-decoration: none;

  font-size: 15px;
  font-weight: 500;
}

nav a:hover,
nav a.active {
  color: var(--accent-color);
}


/* ==========================================================================
   HERO SECTION
========================================================================== */

.hero {
    position: relative;
    height: 90vh;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(rgba(0,0,0,.6),
        rgba(0,0,0,.6)),
        url('../images/CitrusLove.jpg') center/cover no-repeat;

    filter: blur(4px);
    transform: scale(1.05);

    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}
.hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 22px;
    color: #e2e8f0;
}


/* ==========================================================================
   GRID / KOLOM
========================================================================== */

.row {
  margin: 20px -10px;
}

.row::after {
  content: "";
  display: table;
  clear: both;
}

.contact-section .row {
  padding-right: 60px;
}

/* 3 KOLOM */

.col-1 {
  float: left;
  width: 33.33%;

  padding: 0 10px;
  margin-bottom: 20px;
}


/* 2 KOLOM */

.col-2 {
  float: left;
  width: 50%;

  padding: 0 30px;
  margin-bottom: 20px;
}


/* KOLOM BESAR */

.col-3 {
  float: left;
  width: 50%;

  padding: 0 10px;
  margin-bottom: 20px;
}


/* ==========================================================================
   CARD
========================================================================== */

.card {
  background: white;
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
    transition: .3s;
}

.card:hover{
  transform:translateY(-8px);
}
.card img {
  width: 100%;
  height: 250px;

  object-fit: cover;
  display: block;
}

.card-body {
  padding: 20px;
}

.card h3,
.card h4 {
  margin-bottom: 10px;

  color: var(--primary-color);
}


/* ==========================================================================
   FORM
========================================================================== */

.form-box {
  max-width: 650px;

  margin: 0 auto;
  padding: 35px;

  background: var(--white);

  border-radius: 10px;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;

  margin-bottom: 6px;

  font-size: 14px;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 12px;

  border: 1px solid #cbd5e1;
  border-radius: 6px;

  font-size: 14px;
}

.form-control:focus {
  border-color: var(--accent-color);
  outline: none;
}

.error-msg {
  display: none;

  margin-top: 4px;

  color: #dc2626;
  font-size: 12px;
}


/* ==========================================================================
   BUTTON
========================================================================== */

.btn
{
    display:inline-block;
    background:#ff7a00;
    color:white;
    padding:14px 30px;
    border-radius:30px;
    text-decoration:none;
    margin-top:20px;
    transition:0.3s;
}

.btn:hover
{
    transform:translateY(-3px);
    background:#e56d00;
}

footer 
{
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 25px;
}

/* ==========================================================================
   RESPONSIVE
========================================================================== */

@media (max-width: 768px) {

  .col-1,
  .col-2,
  .col-3 {
    width: 100%;
    float: none;
  }

  .nav-container {
    flex-direction: column;
    gap: 15px;

    text-align: center;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  nav a {
    margin: 5px 10px;
  }

  .hero {
    height: 500px;
    padding: 0 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
  }

  .container {
    padding: 0 20px;
  }
}