:root {
    --primary-serif: "Playfair Display", serif;
    --primary-sans: "Montserrat", sans-serif;
    padding: 0;
    margin: 0;
}

body {
    background-color: #ffffff;
    font-family: var(--primary-sans);
}

/* HERO SECTION */
.hero-section {
    position: relative;
    height: 100vh;
    background: url("/assests/hr-archmanor/The-Arch-Manor-Udaipur-3.jpeg") center
    center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

/* Gradient Overlay */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.747),
            rgba(0, 0, 0, 0.473)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hero-top-text {
    font-size: 12px;
    letter-spacing: 4px;
    color: #ffffff;
    margin-bottom: 20px;
}

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: 90px;
    font-weight: 600;
    line-height: 1.1;
}

.hero-sub-info {
    margin-top: 20px;
    font-size: 13px;
    letter-spacing: 2px;
    color:#ffffff;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    letter-spacing: 3px;
    color: #b5ff00;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: #b5ff00;
    margin: 10px auto 0;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .hero-title {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-top-text {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
}

.serif-font {
    font-family: var(--primary-serif);
    color: #000000;
}
.fst-italic {
    color: #a58701;
}

.ls-wide {
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 700;
}

.heritage-badge .number {
    display: block;
    font-family: var(--primary-serif);
    font-size: 3rem;
    color: #d4af37;
    line-height: 1;
}

.heritage-badge .text {
    font-size: 0.6rem;
    letter-spacing: 1px;
    color: #949205;
    font-weight: 600;
}

/* Link Styling */
.btn-link {
    text-decoration: none;
    color: #d4af37;
    font-size: 0.8rem;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 5px;
    display: inline-block;
    transition: 0.3s ease;
}

.btn-link:hover {
    color: #d4af37;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .heritage-section {
        text-align: center;
    }

    .btn-link {
        margin-bottom: 40px;
    }
}

/* Container for the left side needs relative positioning */
.position-relative {
    position: relative;
}

/* Positioning the Logo */
.heritage-logo-container {
    position: absolute;

    left: 5%;
    width: 100%;
    bottom:1%;

}


.heritage-badge {
    position: relative;
    background: white;
    top: 170px;
    left: 35%;
    width: 180px;
    padding: 25px 12px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    z-index: 2;
    transform: translate(20%, 30%);
}

/* Responsive Fix for Mobile */
@media (max-width: 991px) {
    .heritage-logo-container {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 20px;
    }

    .heritage-badge {
        transform: translate(0, 80px);
        margin-bottom: 100px;
    }
}
.villa-section {
    background: #f4f4f4;
}

.villa-img {
    border-radius: 15px;
    width: 100%;
    object-fit: cover;
}

.small-img {
    height: 220px;
}

.large-img {
    height: 260px;
}

.listing-label {
    font-size: 12px;
    letter-spacing: 2px;
    color: #b7a300;
    font-weight: 600;
}

.villa-title {
    font-family: serif;
    font-size: 40px;
    color: #14332d;
}

.villa-title span {
    color: #c2a300;
    font-style: italic;
}

.villa-subtitle {
    font-size: 12px;
    letter-spacing: 3px;
    color: #777;
    margin-bottom: 20px;
}

.villa-text {
    color: #555;
    line-height: 1.7;
}

.villa-features h6 {
    font-weight: 600;
    margin-bottom: 0;
}

.villa-features span {
    font-size: 11px;
    letter-spacing: 2px;
    color: #777;
}

.villa-btn {
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    color: #14332d;
    font-weight: 600;
    border-bottom: 2px solid #b7a300;
    padding-bottom: 3px;
}

.villa-btn:hover {
    color: #b7a300;
}

.visual-experience {
    background: #ffffff;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item.tall {
    height: 420px;
}

.gallery-item:not(.tall) {
    height: 250px;
}

#modalImage {
    max-height: 80vh;
    width: 100%;
    object-fit: contain;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .gallery-item,
    .gallery-item.tall {
        height: auto;
    }
}

.underline-accent {
    width: 80px;
    height: 2px;
    background-color: #d4af37;
    /* Brand Gold */
    margin-top: 10px;
}

/* Icon Circle Styling */
.icon-circle {
    width: 60px;
    height: 60px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background-color: transparent;
    transition: all 0.3s ease;
}

.icon-circle i {
    color: #cbd433;
    font-size: 1.5rem;
}

/* Hover effect for interactivity */
.feature-item:hover .icon-circle {
    border-color: #cbd433;
    transform: translateY(-5px);
}

.feature-item p {
    line-height: 1.6;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-item {
        margin-bottom: 2rem;
    }
}

/* Section Background Colors */
.contact-section {
    background-color: #ffffff;
}

.contact-card {
    background: linear-gradient(
            90deg,
            rgba(0, 0, 5, 0.877) 0%,
            rgba(1, 1, 17, 0.911) 35%,
            rgb(0, 20, 24) 100%
    );
    border: none;
}

/* Custom Minimalist Inputs */
.custom-input {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 0 !important;
    color: white !important;
    padding: 15px 0 !important;
    transition: border-color 0.3s ease;
}

.custom-input:focus {
    box-shadow: none !important;
    border-bottom-color: #cbd433 !important;
}

.custom-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Button & Accents */
.text-lime {
    color: #cbd433;
}

.btn-lime {
    background-color: #d4af37;
    color: #1d1d1d;
    border: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.btn-lime:hover {
    background-color: #d4af37;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Social Icon */
.icon-circle-sm {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.icon-circle-sm:hover {
    border-color: #cbd433;
    color: #cbd433;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .contact-card {
        margin: 0 10px;
    }

    .contact-info {
        text-align: left;
    }
}
