/* ============================================
   Rusted Fish Ranch — Custom Styles
   Palette: Burgundy (#7B2D3B) + Blush (#E8A0A0)
   Fonts: Playfair Display + Inter
   ============================================ */

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

:root {
    --burgundy: #7B2D3B;
    --burgundy-dark: #5E2130;
    --burgundy-light: #9A3D4E;
    --blush: #E8A0A0;
    --blush-light: #F2C4C4;
    --blush-pale: #FDE8E8;
    --cream: #FDF6F0;
    --cream-dark: #F5E6D3;
    --warm-white: #FFFAF7;
    --text-dark: #2D1F1F;
    --text-mid: #5C4040;
    --text-light: #8A6666;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(123, 45, 59, 0.06);
    --shadow-md: 0 4px 20px rgba(123, 45, 59, 0.10);
    --shadow-lg: 0 8px 40px rgba(123, 45, 59, 0.14);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: var(--warm-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
    font-weight: 700;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.938rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--burgundy);
    color: #fff;
    border-color: var(--burgundy);
}

.btn--primary:hover {
    background: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--accent {
    background: var(--blush);
    color: var(--burgundy-dark);
    border-color: var(--blush);
}

.btn--accent:hover {
    background: var(--blush-light);
    border-color: var(--blush-light);
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: var(--burgundy);
    border-color: var(--burgundy);
}

.btn--ghost:hover {
    background: var(--burgundy);
    color: #fff;
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

.btn--sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 246, 240, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(123, 45, 59, 0.08);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(253, 246, 240, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--burgundy);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-menu a {
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--burgundy);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--burgundy);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--burgundy);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(45, 31, 31, 0.5);
    z-index: 999;
    opacity: 0;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
}

/* ============================================
   Hero
   ============================================ */
.hero {
    min-height: 100vh;
    background: var(--cream);
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(232, 160, 160, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(123, 45, 59, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(232, 160, 160, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 540px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blush-pale);
    color: var(--burgundy);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-heading {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-heading em {
    color: var(--burgundy);
    font-style: italic;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 24px;
    align-items: center;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--burgundy);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.813rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--blush);
    flex-shrink: 0;
}

/* Hero Image Stack */
.hero-visual {
    position: relative;
    height: 600px;
}

.hero-image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img--main {
    width: 340px;
    height: 440px;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.hero-img--accent {
    width: 240px;
    height: 180px;
    bottom: 120px;
    left: 0;
    z-index: 3;
    border: 4px solid var(--cream);
}

.hero-img--small {
    width: 200px;
    height: 140px;
    bottom: 20px;
    right: 40px;
    z-index: 3;
    border: 4px solid var(--cream);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

/* ============================================
   Sections
   ============================================ */
.section {
    padding: 100px 0;
}

.section-header {
    max-width: 640px;
    margin-bottom: 56px;
}

.section-header--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--burgundy);
    background: var(--blush-pale);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.063rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ============================================
   Rooms
   ============================================ */
.rooms {
    background: var(--warm-white);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.room-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.room-card-img {
    height: 220px;
    overflow: hidden;
}

.room-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.room-card-body {
    padding: 24px;
}

.room-card-title {
    font-size: 1.375rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.room-card-desc {
    font-size: 0.938rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 16px;
}

.room-card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.room-card-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-mid);
    font-weight: 500;
}

.room-card-features svg {
    flex-shrink: 0;
    color: var(--burgundy);
}

/* ============================================
   About
   ============================================ */
.about {
    background: var(--cream);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-visual {
    position: relative;
    height: 580px;
}

.about-img-main {
    width: 360px;
    height: 460px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: absolute;
    top: 0;
    left: 0;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-float {
    width: 260px;
    height: 190px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: absolute;
    bottom: 0;
    right: 0;
    border: 4px solid var(--cream);
}

.about-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    max-width: 480px;
}

.about-text {
    font-size: 1.063rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.about-value {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-value-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--blush-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-value strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.063rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.about-value span {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ============================================
   Amenities
   ============================================ */
.amenities {
    background: var(--warm-white);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.amenity-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(123, 45, 59, 0.05);
}

.amenity-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--blush-light);
}

.amenity-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: var(--blush-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.amenity-title {
    font-size: 1.188rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.amenity-desc {
    font-size: 0.938rem;
    color: var(--text-mid);
    line-height: 1.6;
}

/* ============================================
   Location
   ============================================ */
.location {
    background: var(--cream);
}

.location-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.location-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
    background: var(--burgundy);
    border-radius: var(--radius-xl);
    color: #fff;
}

.location-content .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--blush-light);
    width: fit-content;
}

.location-content .section-title {
    color: #fff;
}

.location-desc {
    font-size: 1.063rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.location-address {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: normal;
    line-height: 1.6;
}

.location-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.location-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.938rem;
    color: var(--blush-light);
    transition: var(--transition);
}

.location-contact:hover {
    color: #fff;
}

.location-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 400px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* ============================================
   CTA / Contact
   ============================================ */
.cta {
    background: var(--warm-white);
    padding-bottom: 60px;
}

.cta-card {
    background: var(--cream);
    border-radius: var(--radius-xl);
    padding: 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    border: 1px solid var(--blush-light);
}

.cta-desc {
    font-size: 1.063rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-top: 16px;
}

/* Form */
.cta-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.813rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--blush-light);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.938rem;
    color: var(--text-dark);
    background: #fff;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--burgundy);
    box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Success message */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--blush-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.success-text {
    font-size: 0.938rem;
    color: var(--text-mid);
    line-height: 1.6;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: #fff;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.938rem;
    line-height: 1.6;
    max-width: 280px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--blush-light);
}

.footer-contact svg {
    vertical-align: middle;
    margin-right: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}

.footer-bottom p {
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

/* ============================================
   Animations
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        height: 400px;
        order: -1;
    }

    .hero-img--main {
        width: 260px;
        height: 340px;
        right: 10px;
    }

    .hero-img--accent {
        width: 180px;
        height: 130px;
    }

    .hero-img--small {
        width: 160px;
        height: 110px;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-visual {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-container {
        grid-template-columns: 1fr;
    }

    .location-content {
        padding: 32px;
    }

    .cta-card {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        box-shadow: var(--shadow-lg);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-overlay {
        display: block;
    }

    .nav-toggle {
        display: flex;
        z-index: 1002;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-visual {
        height: 300px;
    }

    .hero-img--main {
        width: 200px;
        height: 260px;
    }

    .hero-img--accent {
        width: 140px;
        height: 100px;
    }

    .hero-img--small {
        width: 130px;
        height: 90px;
    }

    .hero-heading {
        font-size: 2rem;
    }

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

    .about-visual {
        height: 320px;
    }

    .about-img-main {
        width: 240px;
        height: 300px;
    }

    .about-img-float {
        width: 180px;
        height: 130px;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 28px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section {
        padding: 72px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

    .section-header {
        margin-bottom: 40px;
    }
}
