@import url('https://fonts.googleapis.com/css2?family=Forum&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Lobster&family=Manrope:wght@200..800&family=Syncopate:wght@400;700&family=Teachers:ital,wght@0,400..800;1,400..800&display=swap');

@font-face {
    font-family: 'NeueAachenProBlk';
    src: url('./fonnts.com-NeueAachenProBlk.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'NeueAachenRegular';
    src: url('./NeueAachenW04-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    font-family: 'Forum', sans-serif;
    line-height: 1.6;
    color: #55262F;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: #55262F;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 62, 56, 0.3);
}

.btn-primary:hover {
    background: #5a352f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 62, 56, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-dark {
    background: transparent;
    color: #55262F;
    border: 2px solid #55262F;
}

.btn-outline-dark:hover {
    background: #55262F;
    color: white;
}

.btn-luxury {
    background: #55262F;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 62, 56, 0.3);
}

.btn-luxury:hover {
    background: #5a352f;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 62, 56, 0.4);
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./images/arcoherobg.jpg') no-repeat center center/cover;
}
.head-span{
    font-family: 'NeueAachenProBlk', serif;
}

.hotel-span {
    font-family: 'NeueAachenRegular', serif;
    font-weight: 800;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.623);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 0 2rem;
}

.hero-logo {
    margin-bottom: 1rem;
}

.head-span span{
     font-size: clamp(2.5rem, 4vw, 7rem);
    letter-spacing: 8px;
    line-height: 0 !important;
}


.logo-placeholder {
    width: 80px;
    height: 80px;
    background: url('./images/logo.png') no-repeat center center/cover;
    margin: 0 auto 1rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2rem, 4vw, 7rem);
    font-weight: 800;
    letter-spacing: 0.1em;
}

.title-underline {
    width: 6rem;
    height: 4px;
    background: white;
    margin: 0 auto;
}

.hero-tagline {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    opacity: 0.8;
    margin-bottom: 3rem;
    max-width: 3xl;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}


.hero-form {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    max-width: 420px;
    margin: 0 auto;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.form-input {
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    width: 100%;
    max-width: 180px;
    background: transparent;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);

}


input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}


.hero-btns{
     padding: 0.8rem 1rem;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    width: 100%;
    max-width: 170px;
    background: transparent;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    cursor: pointer;

}


/* Dropdown specific */
.hero-dropdown {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    z-index: 20;
    animation: pulse 2s infinite;

}
.logo-left{
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    z-index: 20;
    width: 80px;
    height: 80px;
    background: url('./images/logo.png') no-repeat center center/cover;
}

.location-dropdown {
    padding: 0.6rem 1rem;
    border-radius: 8px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.685);
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(1px);

    /* hide arrow across browsers */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none !important;
}

/* For IE/Edge */
.location-dropdown::-ms-expand {
    display: none;
}

.location-dropdown option {
    background: #55262F;  /* Black background */
    color: #fff;       /* White text */
    padding: 0.5rem;
}

.hero-dropdown-mobile{
    display: none; /* show on mobile */
    margin-bottom: 1rem;
}


/* Pulse animation */
@keyframes pulse {
    0% { transform: scale(1); }
    70% { transform: scale(1.05);  }
    100% { transform: scale(1);}
}


@media (max-width: 768px) {
    .hero-dropdown-mobile{ 
         animation: pulse 2s infinite;
        display: block; /* hide top one */
    }
       .hero-dropdown{ 
        display: none; /* hide top one */
    }
  
    .hero-content .form-input {
        display: block; /* show near buttons */
        margin: 1rem auto;
    }
}


@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-icon {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 1.25rem;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-dot {
    width: 4px;
    height: 12px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {

    0%,
    20% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }

    80%,
    100% {
        transform: translateY(0);
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 800;
    color: #55262F;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: #8B5A4F;
    max-width: 3xl;
    margin: 0 auto;
}

/* Destinations Section */
.destinations-section {
    padding: 5rem 0;
    background: white;
}

.destinations-content {
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.destination-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .destination-card {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }


    .destination-card.reverse {
        direction: rtl;
    }

    .destination-card.reverse>* {
        direction: ltr;
    }
}

.destination-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(102, 62, 56, 0.3);
    group: hover;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #55262F, #8B5A4F);
    transition: transform 0.5s ease;
}

.srinagar-bg {
    background: url('./images/Arco-Hotel-Srinagar.webp') no-repeat center center/cover;
}

.sonmarg-bg {
    background: url('./images/Arco-Hotel-Sonmarg.webp') no-repeat center center/cover;
}

.destination-card:hover .image-placeholder {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(102, 62, 56, 0.3), transparent);
}

.destination-content {
    space-y: 1.5rem;
}

.destination-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #55262F;
    margin-bottom: 1rem;
}

.destination-description {
    font-size: 1.125rem;
    color: #8B5A4F;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.highlights {
    margin-bottom: 1.5rem;
}

.highlights-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #55262F;
    margin-bottom: 0.75rem;
}

.highlights-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    list-style: none;
}

@media (min-width: 640px) {
    .highlights-list {
        grid-template-columns: 1fr 1fr;
    }
}

.highlights-list li {
    display: flex;
    align-items: center;
    color: #8B5A4F;
}

.highlight-dot {
    width: 8px;
    height: 8px;
    background: #55262F;
    border-radius: 50%;
    margin-right: 0.75rem;
}

.contact-info {
    background: rgba(255, 255, 255, 0.5);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(102, 62, 56, 0.1);
    margin-bottom: 1.5rem;
}

.contact-item {
    gap: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #8B5A4F;
    font-size: 0.875rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    width: 1rem;
    height: 1rem;
    color: #55262F;
    margin-right: 0.5rem;
}

.contact-item span a {
    text-decoration: none;
    color: #8B5A4F;
}

.destination-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Amenities Section */
.amenities-section {
    padding: 5rem 0;
    background: rgba(102, 62, 56, 0.05);
}

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {


    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    input[type="date"] {
    position: relative; /* Ensure positioning context for the icon */
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1); /* Keep for white icon */
    cursor: pointer;
    opacity: 1; /* Ensure icon is fully opaque */
    width: 20px; /* Set explicit size for consistency */
    height: 20px;
    background-size: contain; /* Ensure icon scales properly */
    margin-right: 8px; /* Space to prevent overlap with input text */
}

}

@media (min-width: 1024px) {
    .amenities-grid {
        grid-template-columns: repeat(4, 1fr);
    }

}

.amenity-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(102, 62, 56, 0.15);
    transition: all 0.3s ease;
    text-align: center;
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 62, 56, 0.3);
}

.amenity-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(102, 62, 56, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: background 0.3s ease;
}

.amenity-card:hover .amenity-icon {
    background: rgba(102, 62, 56, 0.2);
}

.amenity-icon i {
    width: 2rem;
    height: 2rem;
    color: #55262F;
}

.amenity-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #55262F;
    margin-bottom: 0.5rem;
}

.amenity-description {
    color: #8B5A4F;
}

/* Contact Section */
.contact-section {
    padding-top: 5rem;
    background: #55262F;
    color: white;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: flex-start;
}

@media (min-width: 992px) {
    .contact-content {
        flex-direction: row;
        justify-content: space-between;
    }

}

/* Title & Description */
.contact-title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.contact-description {
    font-size: 1.25rem;
    opacity: 0.85;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.contact-detail {
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-detail i {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
    color: white;
}

.detail-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.detail-text {
    opacity: 0.85;
}

/* Button */
.btn-luxury {
    padding: 0.75rem 2rem;
    background: #55262F;
    color: #fff;
    font-weight: 700;
    border-radius: 2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-luxury:hover {
    background: #e5e5e5;
    color: #55262F;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #55262F;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    text-align: center;
}

.footer-brand {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.footer-copyright {
    font-size: 0.75rem;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        max-width: 100%;
    }

    .destination-buttons {
        flex-direction: column;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }


    .hero-content {
        padding: 0 0.5rem;
    }

    .form-input {
        padding: 0.8rem 1rem;
        font-size: 0.875rem;
        max-width: 102px;

    }
    
   .logo-left{
    display: none;
    /* left: 50% !important;
    transform: translateX(-50%) !important;
    background: url('./images/logo-small.png') !important;
    background-repeat: no-repeat !important;
    background-size: contain !important; */
}

}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.contact-numbers {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    flex-wrap: wrap;
}


/* Initially hide the floating button */
/* Initially hide the floating button */
.hidden {
  display: none;
}

/* Styling for the floating WhatsApp button */
.floating-button {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 100;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Helper text for "Talk with us!" below the button */

/* Fade-in effect for the helper text */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* WhatsApp button with pulsing effect */
.whatsapp-button {

  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  color: white;
  font-size: 24px;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: pulse  1.5s infinite;
  /* Pulsing animation */
}

.whatsapp-button img {
  width: 25px;
  height: 25px;
}

/* Pulsing effect */
@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
.helper-text {
  margin-top: 8px;
  font-size: 12px;
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 50px;
  animation: fadeIn 1s ease-in-out;
}   

/* Hide the dropdown menu initially */
.dropdown-content {
  display: none;
  position: absolute;
  bottom: 80px;
  /* Adjust this to place the dropdown above the button */
  right: 0;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  overflow: hidden;
  width: 180px;
  text-align: center;
}

/* Links inside the dropdown */
.dropdown-content a {
  padding: 12px 16px;
  display: block;
  text-decoration: none;
  color: black;
  border-bottom: 1px solid #ddd;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

/* Show the dropdown when it's active */
.show {
  display: block;
}

/* Responsive styles for small devices */
@media (max-width: 600px) {
  #loader {

    img {
      width: 250px;
      height: 250px;
    }
  }

  .floating-button {
    bottom: 40px;
    right: 15px;
  }

  .whatsapp-button {
    width: 50px;
    height: 50px;
  }

  .whatsapp-button i {
    font-size: 24px;
  }

  .dropdown-content {
    width: 160px;
  }

  .dropdown-content a {
    padding: 10px 14px;
  }

  .back-to-top {
    margin-right: 0px;

  }
}



