 :root {
     --color-primary: #4A3728;
     --color-gold: #C5A572;
     --color-cream: #F5F1EB;
     --color-forest: #1A3D32;
     --color-charcoal: #2D2D2D;
     --color-white: #FFFFFF;
     --color-light: #FAF9F7;
     --font-serif: 'Cormorant Garamond', serif;
     --font-sans: 'Lato', sans-serif;
 }

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

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: var(--font-sans);
     color: var(--color-charcoal);
     background-color: var(--color-light);
     overflow-x: hidden;
 }

 /* Typography */
 h1,
 h2,
 h3,
 h4,
 h5 {
     font-family: var(--font-serif);
     font-weight: 400;
 }

 .serif {
     font-family: var(--font-serif);
 }

 .tracking-widest {
     letter-spacing: 0.3em;
 }

 .tracking-wide {
     letter-spacing: 0.15em;
 }

 /* Navbar */
 .navbar {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 1000;
     padding: 1.5rem 0;
     transition: all 0.4s ease;
 }

 .navbar.scrolled {
     background-color: rgba(255, 255, 255, 0.98);
     padding: 1rem 0;
     box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
 }

 .navbar-brand {
     font-family: var(--font-serif);
     font-size: 1.75rem;
     font-weight: 400;
     color: var(--color-white) !important;
     letter-spacing: 0.2em;
     transition: color 0.3s ease;
 }

 .navbar.scrolled .navbar-brand {
     color: var(--color-primary) !important;
 }

 .navbar .nav-link {
     font-family: var(--font-sans);
     font-size: 14px;
     font-weight: 400;
     letter-spacing: 0.15em;
     text-transform: uppercase;
     color: rgba(255, 255, 255, 0.9) !important;
     padding: 0.5rem 1.25rem !important;
     transition: all 0.3s ease;
     position: relative;
 }

 .navbar.scrolled .nav-link {
     color: var(--color-charcoal) !important;
 }

 .navbar .nav-link::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 50%;
     width: 0;
     height: 1px;
     background-color: var(--color-gold);
     transition: all 0.3s ease;
     transform: translateX(-50%);
 }

 .navbar .nav-link:hover::after {
     width: 60%;
 }

 .btn-book {
     background-color: transparent;
     border: 1px solid rgba(255, 255, 255, 0.5);
     color: var(--color-white) !important;
     font-size: 14px;
     letter-spacing: 0.2em;
     padding: 0.75rem 1.75rem;
     transition: all 0.3s ease;
 }

 .btn-book:hover {
     background-color: var(--color-white);
     color: var(--color-primary) !important;
 }

 .navbar.scrolled .btn-book {
     border-color: var(--color-primary);
     color: var(--color-primary) !important;
 }

 .navbar.scrolled .btn-book:hover {
     background-color: var(--color-primary);
     color: var(--color-white) !important;
 }

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

 .hero-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image: url('../images/main.jpg');
     background-size: cover;
     background-position: center;
     transform: scale(1.1);
     animation: heroZoom 20s ease-in-out infinite alternate;
 }

 @keyframes heroZoom {
     0% {
         transform: scale(1.1);
     }

     100% {
         transform: scale(1);
     }
 }

 .hero-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to bottom,
             rgba(0, 0, 0, 0.3) 0%,
             rgba(0, 0, 0, 0.4) 50%,
             rgba(0, 0, 0, 0.5) 100%);
 }

 .hero-content {
     position: relative;
     z-index: 10;
     text-align: center;
     color: var(--color-white);
     padding: 0 2rem;
 }

 .hero-subtitle {
     font-size: 0.75rem;
     letter-spacing: 0.4em;
     text-transform: uppercase;
     margin-bottom: 1.5rem;
     opacity: 0.9;
 }

 .hero-title {
     font-size: clamp(2.5rem, 6vw, 5rem);
     font-weight: 300;
     line-height: 1.2;
     margin-bottom: 1.5rem;
 }

 .hero-desc {
     font-size: 1.1rem;
     font-weight: 300;
     max-width: 600px;
     margin: 0 auto 2.5rem;
     opacity: 0.9;
     line-height: 1.8;
 }

 .btn-primary-custom {
     background-color: var(--color-gold);
     border: none;
     color: var(--color-white);
     font-size: 0.7rem;
     letter-spacing: 0.2em;
     text-transform: uppercase;
     padding: 1rem 2.5rem;
     transition: all 0.4s ease;
 }

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

 .scroll-indicator {
     position: absolute;
     bottom: 3rem;
     left: 50%;
     transform: translateX(-50%);
     z-index: 10;
     animation: bounce 2s infinite;
 }

 .scroll-indicator a {
     color: var(--color-white);
     font-size: 1.5rem;
     opacity: 0.7;
     transition: opacity 0.3s ease;
 }

 .scroll-indicator a:hover {
     opacity: 1;
 }

 @keyframes bounce {

     0%,
     20%,
     50%,
     80%,
     100% {
         transform: translateX(-50%) translateY(0);
     }

     40% {
         transform: translateX(-50%) translateY(-10px);
     }

     60% {
         transform: translateX(-50%) translateY(-5px);
     }
 }

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

 .section-subtitle {
     font-size: 0.7rem;
     letter-spacing: 0.3em;
     text-transform: uppercase;
     color: var(--color-gold);
     margin-bottom: 1rem;
 }

 .section-title {
     font-size: clamp(2rem, 4vw, 3rem);
     font-weight: 300;
     color: var(--color-primary);
     margin-bottom: 1.5rem;
     line-height: 1.3;
 }

 .section-desc {
     font-size: 1rem;
     line-height: 1.9;
     color: #666;
     font-weight: 300;
 }

 .divider {
     width: 60px;
     height: 1px;
     background-color: var(--color-gold);
     margin: 2rem auto;
 }

 /* About Section */
 .about-section {
     background-color: var(--color-white);
 }

 .about-img {
     position: relative;
     overflow: hidden;
 }

 .about-img img {
     width: 100%;
     height: 600px;
     object-fit: cover;
     transition: transform 0.6s ease;
 }

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

 .about-img-badge {
     position: absolute;
     bottom: 2rem;
     right: 2rem;
     background-color: var(--color-gold);
     color: var(--color-white);
     padding: 1.5rem 2rem;
     text-align: center;
 }

 .about-img-badge .number {
     font-family: var(--font-serif);
     font-size: 2.5rem;
     font-weight: 300;
     display: block;
 }

 .about-img-badge .text {
     font-size: 0.65rem;
     letter-spacing: 0.15em;
     text-transform: uppercase;
 }

 /* Blog Section */
 .blog-section {
     background-color: var(--color-light);
 }

 .blog-card {
     background-color: var(--color-white);
     border: none;
     border-radius: 0;
     overflow: hidden;
     transition: all 0.4s ease;
     height: 100%;
 }

 .blog-card:hover {
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
     transform: translateY(-10px);
 }

 .blog-card .card-img-top {
     height: 280px;
     object-fit: cover;
     transition: transform 0.6s ease;
 }

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

 .blog-card .card-img-wrapper {
     overflow: hidden;
 }

 .blog-card .card-body {
     padding: 2rem;
 }

 .blog-card .card-title {
     font-family: var(--font-serif);
     font-size: 1.5rem;
     color: var(--color-primary);
     margin-bottom: 1rem;
 }

 .blog-card .card-text {
     color: #666;
     font-size: 0.95rem;
     line-height: 1.7;
 }

 .blog-card .duration {
     font-size: 0.7rem;
     letter-spacing: 0.15em;
     color: var(--color-gold);
     text-transform: uppercase;
     margin-bottom: 0.5rem;
 }

 .btn-link-custom {
     color: var(--color-primary);
     font-size: 0.75rem;
     letter-spacing: 0.15em;
     text-transform: uppercase;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     transition: all 0.3s ease;
     padding: 0;
     border: none;
     background: none;
 }

 .btn-link-custom:hover {
     color: var(--color-gold);
     gap: 0.75rem;
 }

 /* Specialization Section */
 .specialization-section {
     background-color: var(--color-primary);
     color: var(--color-white);
     position: relative;
     overflow: hidden;
 }

 .specialization-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url('../images/specialization.jpg');
     background-size: cover;
     background-position: center;
     opacity: 0.15;
 }

 .specialization-section .section-subtitle {
     color: var(--color-gold);
 }

 .specialization-section .section-title {
     color: var(--color-white);
 }

 .specialization-section .section-desc {
     color: rgba(255, 255, 255, 0.8);
 }

 .treatment-item {
     padding: 2rem 0;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
     display: flex;
     justify-content: space-between;
     align-items: center;
     transition: all 0.3s ease;
 }

 .treatment-item:hover {
     padding-left: 1rem;
 }

 .treatment-item h4 {
     font-family: var(--font-serif);
     font-size: 1.25rem;
     margin-bottom: 0.5rem;
 }

 .treatment-item p {
     font-size: 0.9rem;
     opacity: 0.7;
     margin: 0;
 }

 .treatment-item .arrow {
     font-size: 1.25rem;
     color: var(--color-gold);
     opacity: 0;
     transform: translateX(-10px);
     transition: all 0.3s ease;
 }

 .treatment-item:hover .arrow {
     opacity: 1;
     transform: translateX(0);
 }

 /* Rooms Section */
 .rooms-section {
     background-color: var(--color-white);
 }

 .room-showcase {
     position: relative;
     overflow: hidden;
     height: 500px;
 }

 .room-showcase img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.6s ease;
 }

 .room-showcase:hover img {
     transform: scale(1.05);
 }

 .room-showcase-overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     padding: 3rem;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
     color: var(--color-white);
 }

 .room-showcase-overlay h3 {
     font-family: var(--font-serif);
     font-size: 1.75rem;
     margin-bottom: 0.5rem;
 }

 .room-showcase-overlay p {
     font-size: 0.9rem;
     opacity: 0.8;
     margin-bottom: 1rem;
 }

 /* Experience Section */
 .experience-section {
     background-color: var(--color-cream);
     position: relative;
 }

 .experience-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 1.5rem;
 }

 .experience-item {
     position: relative;
     overflow: hidden;
     height: 350px;
 }

 .experience-item:first-child {
     grid-column: span 2;
     grid-row: span 2;
     height: auto;
 }

 .experience-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.6s ease;
 }

 .experience-item:hover img {
     transform: scale(1.08);
 }

 .experience-item-overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     padding: 2rem;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
     color: var(--color-white);
     opacity: 0;
     transition: opacity 0.4s ease;
 }

 .experience-item:hover .experience-item-overlay {
     opacity: 1;
 }

 .experience-item-overlay h4 {
     font-family: var(--font-serif);
     font-size: 1.25rem;
     margin-bottom: 0.5rem;
 }

 /* Stats Section */
 .stats-section {
     background-color: var(--color-forest);
     padding: 6rem 0;
 }

 .stat-item {
     text-align: center;
     color: var(--color-white);
     padding: 2rem;
 }

 .stat-number {
     font-family: var(--font-serif);
     font-size: 4rem;
     font-weight: 300;
     color: var(--color-gold);
     line-height: 1;
     margin-bottom: 0.5rem;
 }

 .stat-label {
     font-size: 0.75rem;
     letter-spacing: 0.2em;
     text-transform: uppercase;
     opacity: 0.8;
 }

 /* Testimonial Section */
 .testimonial-section {
     background-color: var(--color-white);
     text-align: center;
 }

 .testimonial-quote {
     font-family: var(--font-serif);
     font-size: clamp(1.5rem, 3vw, 2.25rem);
     font-style: italic;
     font-weight: 300;
     color: var(--color-primary);
     max-width: 900px;
     margin: 0 auto 2rem;
     line-height: 1.6;
 }

 .testimonial-author {
     font-size: 0.8rem;
     letter-spacing: 0.15em;
     text-transform: uppercase;
     color: var(--color-gold);
 }

 /* Newsletter Section */
 .newsletter-section {
     background: linear-gradient(rgba(74, 55, 40, 0.95), rgba(74, 55, 40, 0.95)),
         url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?auto=format&fit=crop&w=1920&q=80');
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
     padding: 8rem 0;
 }

 .newsletter-section .section-subtitle {
     color: var(--color-gold);
 }

 .newsletter-section .section-title {
     color: var(--color-white);
 }

 .newsletter-section .section-desc {
     color: rgba(255, 255, 255, 0.7);
 }

 .newsletter-form {
     max-width: 500px;
     margin: 0 auto;
 }

 .newsletter-form .form-control {
     background-color: transparent;
     border: none;
     border-bottom: 1px solid rgba(255, 255, 255, 0.3);
     border-radius: 0;
     padding: 1rem 0;
     color: var(--color-white);
     font-size: 0.95rem;
 }

 .newsletter-form .form-control::placeholder {
     color: rgba(255, 255, 255, 0.5);
 }

 .newsletter-form .form-control:focus {
     box-shadow: none;
     border-color: var(--color-gold);
     background-color: transparent;
 }

 .btn-newsletter {
     background-color: var(--color-gold);
     border: none;
     color: var(--color-white);
     font-size: 0.7rem;
     letter-spacing: 0.2em;
     text-transform: uppercase;
     padding: 1rem 2.5rem;
     margin-top: 2rem;
     transition: all 0.4s ease;
 }

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

 /* Footer */
 footer {
     background-color: var(--color-charcoal);
     color: var(--color-white);
     padding: 5rem 0 2rem;
 }

 .footer-logo {
     font-family: var(--font-serif);
     font-size: 2rem;
     letter-spacing: 0.15em;
     margin-bottom: 1.5rem;
 }

 .footer-desc {
     font-size: 0.9rem;
     opacity: 0.7;
     line-height: 1.8;
     margin-bottom: 1.5rem;
 }

 .footer-title {
     font-size: 0.75rem;
     letter-spacing: 0.2em;
     text-transform: uppercase;
     margin-bottom: 1.5rem;
     color: var(--color-gold);
 }

 .footer-links {
     list-style: none;
     padding: 0;
 }

 .footer-links li {
     margin-bottom: 0.75rem;
 }

 .footer-links a {
     color: rgba(255, 255, 255, 0.7);
     text-decoration: none;
     font-size: 0.9rem;
     transition: all 0.3s ease;
 }

 .footer-links a:hover {
     color: var(--color-gold);
 }

 .footer-contact p {
     font-size: 0.9rem;
     opacity: 0.7;
     margin-bottom: 0.5rem;
 }

 .footer-social {
     display: flex;
     gap: 1rem;
     margin-top: 1.5rem;
 }

 .footer-social a {
     width: 40px;
     height: 40px;
     display: flex;
     align-items: center;
     justify-content: center;
     border: 1px solid rgba(255, 255, 255, 0.2);
     color: var(--color-white);
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .footer-social a:hover {
     background-color: var(--color-gold);
     border-color: var(--color-gold);
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     margin-top: 4rem;
     padding-top: 2rem;
     text-align: center;
 }

 .footer-bottom p {
     font-size: 0.8rem;
     opacity: 0.5;
     margin: 0;
 }

 /* Mobile Menu */
 .navbar-toggler {
     border: none;
     padding: 0;
 }

 .navbar-toggler:focus {
     box-shadow: none;
 }

 .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='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
 }

 .navbar.scrolled .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='rgba%2845, 45, 45, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
 }

 /* Responsive */
 @media (max-width: 991.98px) {
     .navbar-collapse {
         background-color: var(--color-white);
         padding: 2rem;
         margin-top: 1rem;
         box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     }

     .navbar .nav-link {
         color: var(--color-charcoal) !important;
         padding: 0.75rem 0 !important;
     }

     .btn-book {
         color: var(--color-primary) !important;
         border-color: var(--color-primary);
         margin-top: 1rem;
     }

     .experience-grid {
         grid-template-columns: 1fr;
     }

     .experience-item:first-child {
         grid-column: span 1;
         grid-row: span 1;
         height: 350px;
     }
 }

 @media (max-width: 767.98px) {
     section {
         padding: 5rem 0;
     }

     .hero-title {
         font-size: 2.5rem;
     }

     .about-img img {
         height: 400px;
     }

     .room-showcase {
         height: 350px;
     }
 }