/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Lora:ital,wght@0,400;1,400&family=Playfair+Display:wght@700;800&display=swap');

:root {
  --primary: #1CA3DE;       /* Azurno plava */
  --primary-light: #52baea;
  --secondary: #5A6F5C;     /* Šotovento zelena */
  --accent: #F1B82D;        /* Sunčano žuta */
  --bg-color: #FAF8F5;      /* Osunčani plaster */
  --surface: #ffffff;
  --text-main: #2B2520;     /* Tamne grede */
  --text-muted: #6b635a;
  --border: #e6e4e0;
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-story: 'Lora', serif;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--text-main);
}

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

/* Typography Enhancements */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 4rem; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  background: var(--primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid var(--primary);
  cursor: pointer;
}

.btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-main);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(241, 184, 45, 0.4);
}

.btn-secondary {
  background: var(--secondary);
  border-color: var(--secondary);
  color: white;
}

.btn-secondary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-main);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: rgba(28, 163, 222, 0.8); /* Azure Blue */
  color: white;
  border-color: transparent;
}

.btn-outline-white:hover {
  background: var(--accent);
  border-color: transparent;
  color: var(--text-main);
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--primary);
  border-color: white;
}

.btn-white:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-main);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%;
  padding: 1.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.4s ease;
  background: rgba(252, 251, 250, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar.transparent {
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
}

.navbar.transparent .nav-link,
.navbar.transparent .logo {
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* Custom Logo Styling */
.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  z-index: 1001;
}


.logo-img {
  width: 50px;
  height: auto;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-top {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--text-muted);
  margin-bottom: 2px;
  transition: color 0.4s ease;
}
.navbar.transparent .logo-top { color: rgba(255,255,255,0.9); }

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
  letter-spacing: 1px;
  transition: color 0.4s ease;
}
.navbar.transparent .logo-main { color: #ffffff; text-shadow: none; }

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

.logo-bottom {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  margin-top: 3px;
  transition: color 0.4s ease;
}
.navbar.transparent .logo-bottom { color: rgba(255,255,255,0.9); }

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

.nav-link {
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-link:hover, .nav-link.active { 
  color: var(--secondary); 
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--text-main);
  transition: all 0.3s ease;
}

.navbar.transparent .menu-toggle span {
  background-color: white;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 2rem;
  margin-bottom: 4rem;
}

.hero-bg {
  position: absolute;
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 900px;
  animation: fadeInUp 1.2s ease-out;
  padding-top: 4rem;
}

.hero-subtitle {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  display: block;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero h1 {
  font-size: 5rem;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  font-family: var(--font-story);
  font-style: italic;
  font-weight: 400;
  max-width: 700px;
  margin-inline: auto;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Sections Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Introduction Section */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-content h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.intro-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-family: var(--font-story);
  margin-bottom: 1.5rem;
}

.intro-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.intro-image img {
  width: 100%;
  height: auto;
  transition: transform 0.8s ease;
}

.intro-image:hover img {
  transform: scale(1.03);
}

/* Info Cards for Structured Data */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.info-card {
  background: rgba(252, 251, 248, 0.9);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(28, 163, 222, 0.05);
  border: 1px solid rgba(28, 163, 222, 0.15);
  border-top: 4px solid var(--accent);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(240, 185, 11, 0.03), rgba(90, 111, 92, 0.03));
  z-index: 0;
}

.info-card > * {
  position: relative;
  z-index: 1;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(28, 163, 222, 0.15);
  border-color: rgba(28, 163, 222, 0.3);
}

.info-card h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-card p {
  font-family: var(--font-story);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.link-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.link-tag {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(90, 111, 92, 0.1);
  color: var(--secondary);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.link-tag:hover {
  background: var(--secondary);
  color: white;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-image {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feature-item:hover .feature-image img {
  transform: scale(1.05);
}

.feature-text h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--text-main);
  margin-bottom: 0.8rem;
}

.feature-text p {
  font-family: var(--font-story);
  color: var(--text-muted);
  line-height: 1.7;
}

/* Cards Grid (Pages Navigation) */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 450px;
  text-decoration: none;
  display: block;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card:hover img {
  transform: scale(1.08);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  color: white;
  transition: background 0.4s ease;
}

.card:hover .card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
}

.card h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.card:hover h3 {
  transform: translateY(0);
}

.card:hover p {
  opacity: 1;
  transform: translateY(0);
}

/* Quote Section */
.quote-section {
  background: var(--secondary);
  color: white;
  text-align: center;
  padding: 8rem 2rem;
  margin: 4rem 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.quote-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(28, 163, 222, 0.75); /* Primary blue overlay */
  z-index: 0;
}

.quote-section > * {
  position: relative;
  z-index: 1;
}

.quote-icon {
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--accent);
  opacity: 0.9;
  line-height: 0;
  margin-bottom: 2rem;
  display: block;
  text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.quote-section h2, .quote-section p {
  color: white;
  font-size: 2.2rem;
  font-family: var(--font-story);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.5;
  font-style: italic;
  font-weight: 400;
  text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.quote-author {
  margin-top: 3rem;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.quote-author::before, .quote-author::after {
  content: '';
  height: 1px;
  width: 40px;
  background-color: var(--secondary);
}

/* Airbnb Booking Section Snippet */
.booking-teaser {
  background: white;
  padding: 5rem;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  text-align: center;
  margin-top: -4rem;
  position: relative;
  z-index: 10;
  max-width: 1000px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.booking-teaser h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.booking-teaser p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 500px;
}

/* Footer */
/* Footer */
footer {
  background: var(--text-main);
  color: white;
  padding: 6rem 2rem 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  max-width: 1280px;
  margin: 0 auto 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand img {
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #a0a5a1;
  max-width: 300px;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 1rem;
}

.footer-col ul li a {
  color: #a0a5a1;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  color: #6b706c;
  border-top: 1px solid #2a2f2b;
  padding-top: 2rem;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-yellow {
  background: var(--accent);
  color: var(--text-main);
  border-color: var(--accent);
}

.btn-yellow:hover {
  background: white;
  color: var(--primary);
  border-color: white;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

/* Responsive */
@media (max-width: 992px) {
  .hero h1 { font-size: 4rem; }
  .intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar { padding: 1.2rem 2rem; }
  
  .menu-toggle { display: flex; }
  
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-color);
    flex-direction: column;
    padding: 6rem 2rem;
    align-items: flex-start;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    transition: right 0.4s ease;
  }
  
  .nav-links.active { right: 0; }
  
  .nav-link {
    color: var(--text-main) !important;
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); background-color: var(--text-main); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background-color: var(--text-main); }

  .hero h1 { font-size: 3rem; }
  .hero-buttons { flex-direction: column; }
  
  .footer-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  
  .booking-teaser { padding: 3rem 2rem; }
}

/* Page Headers for Subpages */
.page-header {
  height: 50vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-bottom: 4rem;
}

.page-header h1 {
  font-size: 3.5rem;
  color: white;
  position: relative;
  z-index: 2;
  margin-top: 4rem;
}

/* Calendar placeholder */
.calendar-container {
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  padding: 2rem;
  margin: 2rem 0;
  border: 1px solid var(--border);
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}
.form-control {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 1rem;
  background: var(--bg-color);
  transition: border-color 0.3s;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
}
textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* Gallery Grid - Masonry Layout */
.photo-grid {
  column-count: 3;
  column-gap: 1.5rem;
  margin-bottom: 4rem;
}

.photo-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  display: inline-block;
  width: 100%;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border: 4px solid white;
}

.photo-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.photo-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .photo-grid { column-count: 2; }
}

@media (max-width: 600px) {
  .photo-grid { column-count: 1; }
}

.photo-item:hover img {
  transform: scale(1.05);
}

.content-block {
  max-width: 800px;
  margin: 0 auto 5rem;
}

.content-block h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.content-block p {
  font-size: 1.15rem;
  font-family: var(--font-story);
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Elegant Text Enhancements */
.text-columns {
  column-count: 2;
  column-gap: 3rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .text-columns { column-count: 1; }
}

.intro-grid.reverse {
  direction: rtl;
}

.intro-grid.reverse > * {
  direction: ltr;
}

.intro-subtitle {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 1.8rem;
  margin-bottom: 0.4rem;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 3rem 0;
  color: var(--secondary);
  opacity: 0.6;
  font-size: 1.5rem;
}

.ornament::before, .ornament::after {
  content: '';
  height: 1px;
  width: 60px;
  background-color: var(--secondary);
}

.drop-cap::first-letter {
  font-family: var(--font-serif);
  float: left;
  font-size: 4.5rem;
  line-height: 0.8;
  padding-right: 0.8rem;
  padding-top: 0.4rem;
  color: var(--primary);
  font-weight: 800;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 4rem;
}

@media (max-width: 1000px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border-top: 4px solid var(--primary);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-card::after {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: rgba(28, 163, 222, 0.1);
  line-height: 1;
}

.booking-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--primary);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(28, 163, 222, 0.3);
  margin-top: 5rem;
  margin-bottom: 5rem;
  overflow: hidden;
}

.booking-cta img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.booking-cta-content {
  padding: 4rem;
  color: white;
}

@media (max-width: 768px) {
  .booking-cta {
    grid-template-columns: 1fr;
  }
  .booking-cta-content {
    padding: 2.5rem;
  }
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 1rem;
}

.review-meta h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-main);
}

.review-meta p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.review-stars {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.review-text {
  font-style: italic;
  color: var(--text-main);
  line-height: 1.6;
  flex-grow: 1;
}

/* =========================================
   COOKIEBOT CUSTOM DIZAJN - KRČKA KUĆA
   ========================================= */

#CybotCookiebotDialog {
    background-color: #FAF8F5 !important; /* Topla pozadina zida */
    color: #2B2520 !important;
    font-family: 'Inter', sans-serif !important;
    border: none !important;
    border-radius: 12px 12px 0 0 !important;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.1) !important;
}

/* Naslov bannera */
#CybotCookiebotDialogBodyContentTitle {
    color: #1CA3DE !important; /* Naša Azurna plava */
    font-family: 'Playfair Display', serif !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
}

/* Tekst u banneru */
#CybotCookiebotDialogBodyContentText {
    color: #6b635a !important;
    line-height: 1.6 !important;
}

/* Gumb: Prihvati sve (Glavni) */
#CybotCookiebotDialogBodyButtonAccept, 
#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelection {
    background-color: #1CA3DE !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    border: none !important;
    font-weight: 600 !important;
    padding: 12px 24px !important;
    transition: background-color 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

#CybotCookiebotDialogBodyButtonAccept:hover, 
#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelection:hover {
    background-color: #F1B82D !important; /* Naša Žuta na hover */
    color: #2B2520 !important;
}

/* Gumb: Odbij ili Postavke */
#CybotCookiebotDialogBodyButtonDecline, 
#CybotCookiebotDialogBodyButtonDetails {
    background-color: transparent !important;
    color: #6b635a !important;
    border: 1px solid #e6e4e0 !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    padding: 12px 24px !important;
    transition: all 0.3s ease !important;
}

#CybotCookiebotDialogBodyButtonDecline:hover, 
#CybotCookiebotDialogBodyButtonDetails:hover {
    color: #1CA3DE !important;
    border-color: #1CA3DE !important;
}

/* Linkovi i sitni tekst */
.CybotCookiebotDialogBodyLink {
    color: #1CA3DE !important;
    text-decoration: none !important;
}
.CybotCookiebotDialogBodyLink:hover {
    text-decoration: underline !important;
}

