/* 
  Theme: Deep Navy Blue (#0B1F3A) & Copper Gold (#C47A2C)
  Typography: Manrope & Poppins
*/

:root {
  --primary: #4A2C1A;
  --secondary: #C47A2C;
  --accent: #6B8E23;
  --bg-color: #FAF8F4;
  --section-bg: #E8DFD3;
  --card-bg: #FFFFFF;
  --text-main: #2F2F2F;
  --heading: #4A2C1A;
  --btn-main: #C47A2C;
  --btn-hover: #9E5F1E;
  --border: #E8DFD3;
  --radius: 12px;
  --radius-lg: 16px;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: var(--secondary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--heading);
  font-weight: 600;
}

/* Utilities */
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-accent { color: var(--accent) !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-secondary { background-color: var(--secondary) !important; }
.bg-accent { background-color: var(--accent) !important; }
.bg-section { background-color: var(--section-bg) !important; }

/* Buttons */
.btn-custom {
  background: var(--btn-main);
  color: #fff;
  border-radius: var(--radius);
  padding: 12px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}
.btn-custom:hover {
  background: var(--btn-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196, 122, 44, 0.3);
}
.btn-outline-custom {
  background: transparent;
  color: var(--btn-main);
  border: 2px solid var(--btn-main);
  border-radius: var(--radius);
  padding: 10px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-outline-custom:hover {
  background: var(--btn-main);
  color: #fff;
}

/* Navbar */
.navbar {
  background: #ffffff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}
.navbar-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.5rem;
}
.nav-link {
  color: var(--primary) !important;
  font-weight: 600;
  margin: 0 8px;
  font-size: 0.96rem;
  white-space: nowrap !important;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: var(--accent) !important;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(74, 44, 26, 0.7), rgba(74, 44, 26, 0.8)), url('../images/hero-bg.jpg') center/cover;
  color: #fff;
}
.hero h1 {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Page Hero */
.page-hero {
  position: relative;
  margin-top: 56px;
  padding: 100px 0;
  display: flex;
  align-items: center;
  color: #fff;
}

/* Cards */
.premium-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all 0.4s ease;
  overflow: hidden;
  height: 100%;
}
.premium-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(11, 31, 58, 0.08);
}
.premium-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  z-index: 9999;
  display: none;
}
.cookie-consent h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.cookie-consent p {
  font-size: 0.9rem;
  margin-bottom: 15px;
  color: #666;
}

/* Footer */
footer {
  background: var(--primary);
  color: #fff;
  padding: 60px 0 20px;
}
footer h5 {
  color: var(--secondary);
  margin-bottom: 20px;
}
footer a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s;
}
footer a:hover {
  color: var(--secondary);
}
.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  margin-right: 10px;
  color: #fff;
  transition: background 0.3s;
}
.social-icons a:hover {
  background: var(--secondary);
}
/* Custom Language Selector & Google Translate Clean Integration */
.custom-lang-selector .dropdown-menu,
ul.dropdown-menu.scrollable-lang-menu {
  max-height: 280px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  border-radius: 12px;
  min-width: 180px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
ul.dropdown-menu.scrollable-lang-menu::-webkit-scrollbar {
  width: 6px;
}
ul.dropdown-menu.scrollable-lang-menu::-webkit-scrollbar-track {
  background: #f8f9fa;
  border-radius: 8px;
}
ul.dropdown-menu.scrollable-lang-menu::-webkit-scrollbar-thumb {
  background: var(--secondary, #D4A373);
  border-radius: 8px;
}
.custom-lang-selector .dropdown-item {
  font-size: 0.95rem;
  padding: 8px 16px;
  transition: all 0.2s ease;
}
.custom-lang-selector .dropdown-item:hover {
  background-color: rgba(212, 163, 115, 0.15);
  color: var(--secondary);
  transform: translateX(4px);
}
.goog-te-banner-frame.skiptranslate, .goog-te-banner-frame {
  display: none !important;
}
body {
  top: 0px !important;
}
#goog-gt-tt {
  display: none !important;
}
.goog-tooltip, .goog-tooltip:hover {
  display: none !important;
}
.goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
