/* 
  Standalone styles for Seaside Cottage one-page website
  Clean, professional design matching Stay Local aesthetic
  Primary color: #0f4c3a (deep forest green)
*/

:root {
    --primary: #0f4c3a;
    --accent: #166534;
    --light: #f8f1e9;
}

body {
    font-family: 'Inter Tight', system_ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #374151;
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.1;
}

.section-header {
    font-size: 2.25rem;
    line-height: 1.1;
    font-weight: 700;
    color: #0f4c3a;
}

/* Navbar */
.nav {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f3e8d8;
}

.nav-scrolled {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

/* Hero */
.hero {
    background-size: cover;
    background-position: center;
    height: 620px;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 76, 58, 0.35), rgba(0, 0, 0, 0.45));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 640px;
}

/* Tabs */
.tab-button {
    padding: 14px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border-bottom: 3px solid transparent;
}

.tab-button.active {
    color: #0f4c3a;
    border-bottom-color: #0f4c3a;
    font-weight: 700;
}

.tab-content {
    animation: fadeIn 0.3s ease forwards;
}

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

/* Form styling */
.form-input {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
    border-color: #0f4c3a;
    box-shadow: 0 0 0 3px rgba(15, 76, 58, 0.1);
    outline: none;
}

/* Gallery images */
.gallery-img {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.04);
}

/* Success message */
.success-message {
    animation: popIn 0.4s ease forwards;
}

@keyframes popIn {
    0% { transform: scale(0.95); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Price badge */
.price-badge {
    background: rgba(255,255,255,0.95);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.2);
}

/* Footer */
footer {
    background: #111827;
    color: #9ca3af;
}

/* Utility */
.prose p {
    margin-bottom: 1.25rem;
}