:root {
    --primary-navy: #0C1F3F;
    --secondary-beige: #D8C4A2;
    --accent-teal: #5C8A89;
    --base-white: #F8F7F3;
    --text-dark: #1E1E1E;
    --gold-accent: #dfb574;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--base-white);
    color: var(--text-dark);
    line-height: 1.6;
}

#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: var(--base-white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.preloader-logo {
    width: 80px;
    height: 80px;
    background: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.navbar {
    background-color: #847358 !important;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

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

/* Hero Carousel Styles - FIXED */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-carousel {
    height: 100vh;
    position: relative;
}

.carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(12, 31, 63, 0.4), rgba(12, 31, 63, 0.4));
    z-index: 1;
}

/* Background Images for each slide */
.carousel-item:nth-child(1) {
    background-image: url('../images/Puri-inner-banner-m-1-1.webp');
}

.carousel-item:nth-child(2) {
    background-image: url('../images/Mandarmoni_hotel.webp');
}

.carousel-item:nth-child(3) {
    background-image: url('../images/puri_beach.webp');
}


/* Hero Content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    animation: fadeInUp 1s ease;
}

.hero-logo {
    width: 100px;
    height: 100px;
    background: var(--gold-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-navy);
    animation: slideInDown 1s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-hero {
    background: #000000;
    color: var(--primary-navy);
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.btn-hero:hover {
    background: white;
    color: var(--primary-navy);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
    text-decoration: none;
}

/* Custom Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid var(--gold-accent);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--gold-accent);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
}

/* Custom Carousel Indicators */
.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--gold-accent);
    margin: 0 8px;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background: var(--gold-accent);
    transform: scale(1.2);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    /*background: var(--gold-accent);*/
    background: linear-gradient(45deg, var(--gold-accent), var(--accent-teal));
    border-radius: 2px;
}

#about {
    padding: 5rem 0;
    background: var(--secondary-beige);
    text-align: center;
}

#about .lead {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-dark);
}

#rooms {
    padding: 5rem 0;
    background: var(--base-white);
}

.room-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.room-image {
    height: 250px;
    background: linear-gradient(45deg, var(--secondary-beige), var(--accent-teal));
    position: relative;
    overflow: hidden;
}

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

.room-card .card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.room-card .card-text {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.btn-room {
    background: var(--accent-teal);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-room:hover {
    background: var(--primary-navy);
    color: white;
    transform: translateX(5px);
}

#map-section {
    padding: 5rem 0;
    background: var(--secondary-beige);
}

.map-container {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(12, 31, 63, 0.15);
    background: var(--base-white);
    border: 2px solid var(--secondary-beige);
}

#map {
    height: 100%;
    width: 100%;
}

#contact {
    padding: 5rem 0;
    background: var(--base-white);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: 2px solid var(--secondary-beige);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 0.2rem rgba(92, 138, 137, 0.25);
}

.btn-contact {
    background: var(--primary-navy);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: var(--accent-teal);
    transform: translateY(-2px);
}

footer {
    background: #000000;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

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

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-logo {
        width: 80px;
        height: 80px;
        font-size: 24px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }

    .carousel-control-prev {
        left: 15px;
    }

    .carousel-control-next {
        right: 15px;
    }

    .contact-form {
        margin: 0 1rem;
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn-hero {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }
}
/* new css */
.preices {
    background-color: yellow;
    padding: 8px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: bold;
    position: relative;
    top: 43px;
    z-index: 12;
    left: 10px;
}
.roomsspaes {
    padding: 15px;
}
.contact_equl {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
}
.contact-info__icon {
    padding: 10px;
    font-size: 30px;
    color: sandybrown;
}
.media-body h3 {
    font-weight: bold;
    font-size: 30px;
    font-style: unset;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
  text-decoration: none;
  z-index: 99999;
}

.whatsapp-icon {
  width: 35px;
  height: 35px;
}

.whatsapp-float:hover {
  background-color: #1EBE57;
}

.call-box {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 9999;
  font-family: Arial, sans-serif;
}

/* Circle button */
.call-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #28a745;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  text-decoration: none;
}

.call-circle img {
  width: 32px;
  height: 32px;
  border-radius: 21px;
}
