@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400&family=Plus+Jakarta+Sans:wght@300;400;500&display=swap');

:root {
  --bg:              #0D0D0D;
  --bg-card:         #181410;
  --bg-elevated:     #221e18;
  --bg-light:        #F7F3EC;

  --primary:         #D4A017;
  --primary-glow:    rgba(212, 160, 23, 0.18);
  --primary-dark:    #1A1200;
  --secondary:       #7B2FBE;
  --secondary-glow:  rgba(123, 47, 190, 0.15);

  --text-primary:    #F5EDD8;
  --text-secondary:  #A89060;
  --text-muted:      #5C5550;
  --text-on-primary: #1A1200;


  --border-color:   #F5EDD8;

  --font-display: 'Lora', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --radius-pill: 100px;

  --ease-warm: cubic-bezier(0.34, 1.2, 0.64, 1);
  --transition: 0.3s ease;
}

*{ box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 300;
}

img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: opacity var(--transition); }
a:hover { opacity: 0.72; }

/* ── HEADER ───────────────────────────────────────────────── */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 6%;
  border-bottom: 2px solid var(--border-color);
  height: 100px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--text-primary);
  text-transform: uppercase;
}

.logo span { color: var(--secondary); }

nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

nav a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.75);
  transition: color var(--transition);
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width var(--transition);
}

nav a:hover { color: var(--primary); opacity: 1; }
nav a:hover::after { width: 100%; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 6% 7rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1573164713988-8665fc963095?w=1600&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  z-index: 0;
  animation: slowZoom 20s ease-in-out infinite alternate;
}

/* warm amber-brown overlay — not cold blue */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    155deg,
    rgba(13, 9, 4, 0.50) 0%,
    rgba(26, 16, 2, 0.68) 45%,
    rgba(10, 7, 2, 0.90) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.6rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  animation: fadeUp 0.9s var(--ease-warm) both;
}

.hero h1 em {
  font-style: italic;
  color: var(--primary);
}

.hero h2 {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 300;
  color: rgba(245, 237, 216, 0.70);
  margin-top: 1.1rem;
  max-width: 500px;
  line-height: 1.7;
  animation: fadeUp 0.9s 0.15s var(--ease-warm) both;
}

.hero button {
  margin-top: 2.2rem;
  animation: fadeUp 0.9s 0.3s var(--ease-warm) both;
}

/* scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.4;
  animation: fadeIn 1.2s 1s ease both;
}

.hero-scroll span {
  font-size: 0.63rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform 0.28s var(--ease-warm), box-shadow var(--transition);
}

button {
  background: var(--primary);
  color: var(--text-on-primary);
}

button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--primary-glow);
}

button:active { transform: translateY(0); }


/* ── SECTIONS ─────────────────────────────────────────────── */
main{
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
main section { padding: 6rem 6%; }

.details{
  width: 350px;
  
}
.contact{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

.contact .details input,
.contact .details textarea {
    width: 100%;
    max-width: 500px;
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 6px;
    border: none;
    margin-bottom: 18px;
    
}

.contact .details textarea {
    min-height: 120px;
    resize: vertical;
}

#form-msg{font-size:1rem;color:green;display:none}


/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  padding: 2rem 6%;
  background: #060402 !important;
  color: var(--text-muted) !important;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-align: center;
  border-top: 0.5px solid var(--border);
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 0.4; }
}

@keyframes slowZoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.07); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 0.85; }
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 768px) {
  nav { gap: 1.25rem; }
  nav a { font-size: 0.72rem; }

  .hero { padding: 0 5% 5rem; }


}

@media (max-width: 480px) {
  header { padding: 0.9rem 4%; }
  .logo  { font-size: 1.25rem; }
  nav    { gap: 0.9rem; }
}