@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@500;600;700;800&display=swap');

:root {
  /* Colors */
  --bg-main: #fffaf3;
  --bg-section: #fff1e6;
  --bg-card: #ffffff;
  --text-heading: #1f2937;
  --text-body: #4b5563;
  --text-muted: #9ca3af;
  
  /* Gradients */
  --grad-sunset: linear-gradient(135deg, #ff7a18, #ffb347);
  --grad-roma: linear-gradient(135deg, #ff416c, #ff4b2b);
  --grad-tuscany: linear-gradient(135deg, #56ab2f, #a8e063);
  --grad-coast: linear-gradient(135deg, #36d1dc, #5b86e5);
  --grad-green-red: linear-gradient(135deg, #11998e, #ff512f);

  /* Shadows */
  --shadow-soft: 0 10px 30px rgba(255, 122, 24, 0.08);
  --shadow-hover: 0 15px 40px rgba(255, 122, 24, 0.15);
  --shadow-glass: 0 8px 32px 0 rgba(255, 179, 71, 0.1);

  /* Border Radius */
  --br-card: 20px;
  --br-btn: 50px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-heading);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography Utilities */
.text-gradient-sunset {
  background: var(--grad-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gradient-roma {
  background: var(--grad-roma);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gradient-tuscany {
  background: var(--grad-tuscany);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gradient-coast {
  background: var(--grad-coast);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gradient-green-red {
  background: var(--grad-green-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--br-btn);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
  background: var(--grad-sunset);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 122, 24, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 122, 24, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid #ff7a18;
  color: #ff7a18;
}

.btn-outline:hover {
  background: #ff7a18;
  color: white;
}

.btn-green-red {
  background: transparent;
  border: 2px solid #11998e;
  color: #11998e;
}

.btn-green-red:hover {
  background: var(--grad-green-red);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(255, 81, 47, 0.4);
  transform: translateY(-2px);
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 250, 243, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 15px 0;
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-heading);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-sunset);
  transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.nav-links a.btn::after {
  display: none;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-heading);
  border-radius: 3px;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 179, 71, 0.2) 0%, rgba(255, 250, 243, 0) 70%);
  border-radius: 50%;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text-body);
}

.hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Floating Cards */
.hero-visual {
  position: relative;
  height: 500px;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 15px;
  border-radius: var(--br-card);
  box-shadow: var(--shadow-glass);
  display: flex;
  align-items: center;
  gap: 15px;
  width: 280px;
  animation: float 6s ease-in-out infinite;
}

.floating-card img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
}

.floating-card h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.floating-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.fc-1 { top: 10%; right: 5%; animation-delay: 0s; }
.fc-2 { top: 40%; left: 0; animation-delay: 1.5s; }
.fc-3 { bottom: 15%; right: 15%; animation-delay: 3s; }

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Grids */
.section-padding { padding: 80px 0; }
.bg-alt { background-color: var(--bg-section); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Destination Cards */
.dest-card {
  background: var(--bg-card);
  border-radius: var(--br-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.dest-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.dest-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.dest-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dest-card:hover .dest-img-wrap img {
  transform: scale(1.05);
}

.dest-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--grad-tuscany);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.dest-content { 
  padding: 25px; 
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.dest-content h3 { margin-bottom: 10px; font-size: 1.5rem; }
.dest-content p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 15px; }

.free-list {
  list-style: none;
  margin-bottom: 20px;
  flex-grow: 1;
}

.free-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.free-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ff7a18;
  font-weight: bold;
}

/* City Page Specifics */
.city-hero {
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.city-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(31, 41, 55, 0.2), rgba(31, 41, 55, 0.7));
}

.city-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.city-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.city-hero h1 { color: white; font-size: 4rem; margin-bottom: 15px;}
.city-hero p { font-size: 1.2rem; }

.content-section {
  background: var(--bg-card);
  border-radius: var(--br-card);
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-soft);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.content-img {
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

/* Forms & Footer */
.form-group { margin-bottom: 20px; }
.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-family: inherit;
  background: var(--bg-main);
  transition: border-color 0.3s;
}
.form-control:focus {
  outline: none;
  border-color: #ff7a18;
}

footer {
  background: #ffffff;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 { margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a:hover { color: #ff7a18; }
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #f3f4f6;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Animations JS */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-visual { height: 400px; margin-top: 40px; }
  .fc-1 { right: 10%; }
  .fc-2 { left: 10%; }
  .fc-3 { right: 20%; }
  .content-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  }
  .nav-links.active { right: 0; }
  .hamburger { display: flex; z-index: 1001; }
  .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  
  .hero-content h1 { font-size: 2.5rem; }
  .section-title { font-size: 2rem; }
  .city-hero h1 { font-size: 3rem; }
}