/* Royal Heritage Blue & Antique Gold - Architectural Studio Theme */

:root {
  --primary-color: #1A4D8F;
  --secondary-color: #C5A572;
  --dark-navy: #0D2847;
  --light-gold: #E6D5B8;
  --white: #FFFFFF;
  --light-bg: #F8F9FA;
  --shadow-color: rgba(26, 77, 143, 0.15);
  --gold-shadow: rgba(197, 165, 114, 0.3);
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-navy) 100%) !important;
  padding: 1rem 0;
  box-shadow: 0 2px 15px var(--shadow-color);
  transition: all 0.3s ease;
  z-index: 1000;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  background: rgba(13, 40, 71, 0.98) !important;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary-color) !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  color: var(--light-gold) !important;
  transform: scale(1.05);
}

.navbar-toggler {
  border: 2px solid var(--secondary-color) !important;
  padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(197, 165, 114, 0.25) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23C5A572' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.nav-link {
  color: var(--white) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 80%;
}

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

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-color) 50%, var(--dark-navy) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23C5A572" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

.hero-section .display-1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  color: var(--white) !important;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.hero-section .lead {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--light-gold) !important;
  font-weight: 300;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  max-width: 700px;
  margin: 0 auto 2rem;
}

.hero-section .btn {
  background: var(--secondary-color) !important;
  color: var(--dark-navy) !important;
  border: none !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--gold-shadow);
}

.hero-section .btn:hover {
  background: var(--light-gold) !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--gold-shadow);
  color: var(--dark-navy) !important;
}

/* Buttons */
.btn {
  border-radius: 0;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  padding: 0.75rem 2rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary-color) !important;
  border: 2px solid var(--primary-color) !important;
  color: var(--white) !important;
}

.btn-primary:hover {
  background: var(--dark-navy) !important;
  border-color: var(--dark-navy) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px var(--shadow-color);
  color: var(--white) !important;
}

.btn-outline-secondary {
  border: 2px solid var(--secondary-color) !important;
  color: var(--secondary-color) !important;
  background: transparent !important;
}

.btn-outline-secondary:hover,
.btn-outline-secondary.active {
  background: var(--secondary-color) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* Cards */
.card {
  border-radius: 0;
  transition: all 0.3s ease;
  overflow: hidden;
  background: var(--white);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px var(--shadow-color) !important;
}

.card-body {
  position: relative;
}

.card .h5 {
  color: var(--primary-color) !important;
  font-weight: 700;
  margin-bottom: 1rem;
}

.card p {
  color: #666;
  line-height: 1.8;
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.py-5 {
  background: var(--white);
}

.py-4 {
  background: var(--light-bg);
}

.display-1,
.display-3,
.display-4 {
  color: var(--primary-color) !important;
  font-weight: 800;
  margin-bottom: 1rem;
}

.display-4 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.lead {
  color: #666;
  font-size: 1.2rem;
}

.text-muted {
  color: #999 !important;
}

/* Images */
.img-fluid {
  transition: all 0.3s ease;
}

.rounded {
  border-radius: 0 !important;
}

.shadow-lg {
  box-shadow: 0 10px 40px var(--shadow-color) !important;
}

.shadow {
  box-shadow: 0 5px 20px var(--shadow-color) !important;
}

.shadow-sm {
  box-shadow: 0 2px 10px var(--shadow-color) !important;
}

/* Timeline Section */
.timeline-section {
  position: relative;
  padding: 3rem 0;
}

.timeline-section::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--secondary-color);
  transform: translateX(-50%);
}

/* Ornate Divider */
.ornate-divider {
  width: 100px;
  height: 3px;
  background: var(--secondary-color);
  margin: 2rem auto;
  position: relative;
}

.ornate-divider::before,
.ornate-divider::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--secondary-color);
  transform: rotate(45deg);
  top: -3.5px;
}

.ornate-divider::before {
  left: -15px;
}

.ornate-divider::after {
  right: -15px;
}

/* Icons */
.bi {
  color: var(--secondary-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.bi-building,
.bi-cup-hot,
.bi-briefcase,
.bi-flower1,
.bi-calendar-event,
.bi-car-front {
  display: block;
  margin: 0 auto 1.5rem;
}

.bi-check-circle-fill {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

.bi-geo-alt,
.bi-telephone,
.bi-envelope,
.bi-geo-alt-fill,
.bi-telephone-fill,
.bi-envelope-fill {
  font-size: 1.5rem;
  color: var(--secondary-color);
}

/* Contact Section */
.contact-card {
  background: var(--white);
  padding: 2rem;
  border-left: 4px solid var(--secondary-color);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px var(--shadow-color);
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--dark-navy));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.icon-wrapper .bi {
  color: var(--secondary-color);
  font-size: 2rem;
  margin: 0;
}

/* Forms */
.form-control,
.form-select {
  border: 2px solid #ddd !important;
  border-radius: 0;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  background: var(--white) !important;
  color: #333 !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(197, 165, 114, 0.25) !important;
  outline: none;
}

.form-control-lg,
.form-select-lg {
  padding: 1rem 1.25rem;
  font-size: 1rem;
}

.floating-label {
  position: relative;
}

.floating-label label {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  background: var(--white);
  padding: 0 0.5rem;
  color: #999;
  transition: all 0.3s ease;
  pointer-events: none;
}

.floating-label input:focus + label,
.floating-label input:not(:placeholder-shown) + label,
.floating-label textarea:focus + label,
.floating-label textarea:not(:placeholder-shown) + label {
  top: 0;
  font-size: 0.85rem;
  color: var(--secondary-color);
}

/* Privacy Page */
.privacy-hero {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-navy));
  padding: 8rem 0 4rem;
  color: var(--white);
}

.privacy-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sidebar-nav {
  position: sticky;
  top: 100px;
  background: var(--white);
  padding: 2rem;
  box-shadow: 0 5px 20px var(--shadow-color);
}

.sidebar-nav a {
  color: var(--primary-color) !important;
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  padding-left: 1rem;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  color: var(--secondary-color) !important;
  border-left-color: var(--secondary-color);
  padding-left: 1.5rem;
}

.content-column {
  padding: 2rem;
}

.last-updated {
  background: var(--light-bg);
  padding: 1rem;
  border-left: 4px solid var(--secondary-color);
  margin-bottom: 2rem;
}

.privacy-section {
  margin-bottom: 3rem;
}

.privacy-section h2 {
  color: var(--primary-color) !important;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--secondary-color);
}

.contact-box {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-navy));
  color: var(--white);
  padding: 2rem;
  margin-top: 3rem;
}

.contact-box a {
  color: var(--secondary-color) !important;
  text-decoration: none;
  font-weight: 600;
}

.contact-box a:hover {
  color: var(--light-gold) !important;
  text-decoration: underline;
}

/* Room/Project Cards */
.filter-btn {
  margin: 0.5rem;
}

.room-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 100%;
}

.room-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.room-image-wrapper img {
  transition: transform 0.5s ease;
}

.room-card:hover .room-image-wrapper img {
  transform: scale(1.1);
}

.room-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(13, 40, 71, 0.9), transparent);
  transition: opacity 0.3s ease;
}

.room-details {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: var(--white);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.room-details h5 {
  color: var(--secondary-color) !important;
  margin-bottom: 0.5rem;
}

.room-details p {
  color: var(--white) !important;
}

/* Dining Sections */
.hero-dining {
  min-height: 60vh;
  background: linear-gradient(135deg, var(--dark-navy), var(--primary-color));
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 40, 71, 0.6);
}

.reservation-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
}

.btn-reserve {
  background: var(--secondary-color) !important;
  color: var(--dark-navy) !important;
  border: none !important;
  padding: 1rem 2rem;
  border-radius: 50px;
  box-shadow: 0 5px 20px var(--gold-shadow);
  font-weight: 700;
  text-transform: uppercase;
}

.btn-reserve:hover {
  background: var(--light-gold) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--gold-shadow);
}

.section-fullscreen {
  min-height: 100vh;
  position: relative;
}

.section-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

/* Menu Section */
.menu-section {
  background: var(--white);
  padding: 4rem 0;
}

.menu-category {
  margin-bottom: 4rem;
}

.menu-category h3 {
  color: var(--primary-color) !important;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 1rem;
}

.menu-category h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--secondary-color);
}

.menu-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}

.menu-item:hover {
  background: var(--light-bg);
  padding-left: 1rem;
}

.menu-item-content h5 {
  color: var(--primary-color) !important;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.menu-item-price {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1.2rem;
}

.chef-signature {
  background: linear-gradient(135deg, var(--light-bg), var(--white));
  padding: 4rem 0;
}

.signature-dish {
  text-align: center;
  padding: 2rem;
}

.dish-circle {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 2rem;
  border: 5px solid var(--secondary-color);
  box-shadow: 0 10px 30px var(--gold-shadow);
}

.dish-info h4 {
  color: var(--primary-color) !important;
  font-weight: 700;
  margin-bottom: 1rem;
}

.chef-note {
  font-style: italic;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  padding: 1.5rem;
  border-left: 4px solid var(--secondary-color);
  background: var(--white);
}

/* Wine Pairing */
.wine-pairing {
  background: var(--dark-navy);
  color: var(--white);
  padding: 4rem 0;
}

.wine-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(197, 165, 114, 0.3);
}

.wine-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  border-color: var(--secondary-color);
}

.wine-card h5 {
  color: var(--secondary-color) !important;
}

/* Dining Hours */
.dining-hours {
  background: var(--light-bg);
  padding: 4rem 0;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.hours-card {
  background: var(--white);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px var(--shadow-color);
  transition: all 0.3s ease;
}

.hours-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--shadow-color);
}

.hours-card h4 {
  color: var(--primary-color) !important;
  margin-bottom: 1rem;
}

.hours-card .bi {
  color: var(--secondary-color);
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--dark-navy), var(--primary-color));
  color: var(--white);
  padding: 4rem 0 2rem;
}

footer h5 {
  color: var(--secondary-color) !important;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

footer a {
  color: var(--white) !important;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

footer a:hover {
  color: var(--secondary-color) !important;
  transform: translateX(5px);
}

footer .bi-facebook,
footer .bi-instagram,
footer .bi-twitter,
footer .bi-linkedin {
  font-size: 1.5rem;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  color: var(--white);
}

footer .bi-facebook:hover,
footer .bi-instagram:hover,
footer .bi-twitter:hover,
footer .bi-linkedin:hover {
  color: var(--secondary-color);
  transform: translateY(-3px);
}

.list-unstyled li {
  margin-bottom: 0.75rem;
}

footer hr {
  border-color: rgba(197, 165, 114, 0.3);
  margin: 2rem 0;
}

/* Utility Classes */
.text-decoration-none {
  text-decoration: none !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-90 {
  opacity: 0.9;
}

.object-fit-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

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

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out;
}

.animate-slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

.animate-slide-in-right {
  animation: slideInRight 0.8s ease-out;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--dark-navy);
    padding: 1rem;
    margin-top: 1rem;
  }
  
  .nav-link {
    margin: 0.5rem 0;
  }
  
  .hero-section {
    min-height: 70vh;
  }
  
  .display-1 {
    font-size: 2.5rem !important;
  }
  
  .display-4 {
    font-size: 2rem !important;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .sidebar-nav {
    position: static;
    margin-bottom: 2rem;
  }
  
  .reservation-float {
    bottom: 1rem;
    right: 1rem;
  }
  
  .btn-reserve {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section .display-1 {
    font-size: 2rem !important;
  }
  
  .hero-section .lead {
    font-size: 1rem !important;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .card-body {
    padding: 1.5rem !important;
  }
  
  .icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .icon-wrapper .bi {
    font-size: 1.5rem;
  }
  
  .dish-circle {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 575.98px) {
  .px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  .navbar-brand {
    font-size: 1.3rem;
  }
  
  section {
    padding: 2rem 0;
  }
  
  .contact-card {
    margin-bottom: 1.5rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .btn,
  .reservation-float,
  footer {
    display: none !important;
  }
  
  body {
    color: #000;
  }
  
  .hero-section {
    min-height: auto;
    padding: 2rem 0;
  }
}