/* Custom Styles for Windy Farm Atmosphere */

body {
    font-family: 'Noto Sans JP', 'Nunito Sans', sans-serif;
    background-color: #fcfcfc;
}

/* Hero Section */
.hero-carousel-img {
    height: 75vh;
    object-fit: cover;
    width: 100%;
}

@media (max-width: 768px) {
    .hero-carousel-img {
        height: 65vh;
        border-radius: 0;
    }
}

.hero-section-overlay {
    border-radius: 0 0 1.5rem 1.5rem;
    overflow: hidden;
}

@keyframes fadeInHero {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-animate {
    animation: fadeInHero 1.2s ease-out forwards;
}

.hero-section-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
    border-radius: inherit;
    z-index: 2;
}

/* Grid Pattern Overlay */
.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 1;
}

.hero-text-overlay {
    z-index: 10;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: clamp(2.5rem, 10vw, 7rem);
    letter-spacing: 0.12em;
    line-height: 1.1;
    margin: 0.2em 0;
    text-transform: uppercase;
    color: #fff !important;
}

.hero-tagline-top {
    font-size: clamp(0.9rem, 2vw, 1.25rem);
    letter-spacing: 0.3em;
    color: #fff !important;
}

.hero-tagline-bottom {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: #fff !important;
}

/* Feature Cards */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .15) !important;
}

/* Section Title Line */
.section-title-line {
    width: 50px;
    height: 3px;
    background-color: #4AB9D5;
    margin: 1rem auto;
    display: block;
    border-radius: 2px;
}

.section-title-line.ms-0 {
    margin-left: 0;
}

/* Action Buttons */
.reserve-action-btn {
    background: linear-gradient(135deg, #4AB9D5 0%, #2f8eac 100%);
    border: none;
}

.reserve-action-btn:hover {
    background: linear-gradient(135deg, #3fa1bd 0%, #25748f 100%);
}

/* Utility Classes for Refactoring */
.text-accent {
    color: #4AB9D5 !important;
}

.text-dark-navy {
    color: #2c3e50 !important;
}

.ls-wide {
    letter-spacing: 2px;
}

.container-intro {
    max-width: 900px;
}

.text-description {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #555;
}

.text-description-small {
    line-height: 1.8;
    font-size: 1.05rem;
    color: #555;
}

/* Fixed Background Sections */
.bg-fixed-section {
    height: 400px;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.bg-hotel-1 {
    background-image: url("./img/hotel_01.jpg");
}

.bg-garb-1 {
    background-image: url("./img/garb_01.jpg");
}

.bg-parking-1 {
    background-image: url("./img/parking_01.webp");
}

/* Card Image Fixed Height */
.card-img-fixed-height {
    height: 220px;
    object-fit: cover;
}

/* Custom Backgrounds & Layout */
.bg-light-gray {
    background-color: #f8f9fa !important;
}

.alert-custom-info {
    background-color: #eaf6fa !important;
}

.my-custom-margin {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
}

.p-custom-12 {
    padding: 12px !important;
}

.bg-white-rounded {
    background: #ffffff !important;
    border-radius: 4px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    margin-right: 15px;
}

/* Typography Tweaks */
.lh-1-2 {
    line-height: 1.2 !important;
}

.lh-1-4 {
    line-height: 1.4 !important;
}

.fs-0-8 {
    font-size: 0.8rem !important;
}

.fs-0-85 {
    font-size: 0.85rem !important;
}
