/* ============================================
   EDEN CONSTRUCTIONS - PAGE STYLES
   ============================================ */

/* Import Global Styles */
@import url('../assets/css/global.css');

/* ============================================
   EDEN CONSTRUCTIONS - BERLINER JUNGENS STYLE
   ============================================ */

/* CSS VARIABLES FOR CONSTRUCTIONS */
:root {
    --const-green: #125642; /* Forest green accent */
    --const-green-dark: #0d3d2f;
    --const-light-bg: #f9f9f9;
    --const-text-dark: #333333;
}

/* HERO SECTION */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url("./images/Hero-bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: calc(var(--navbar-height) * -1);
}

.hero-content h1 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    font-size: 6rem;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
}

.hero-content p {
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Navbar active/scrolled state refinements if needed */
.navbar {
    transition: all 0.3s ease;
}

/* INTRO SECTION */
.intro-section {
    padding: 120px 0;
    background: white;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-title-small {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: 2.5rem;
    margin-bottom: 32px;
    color: #2c2c2c;
    line-height: 1.2;
}

.intro-description p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--const-text-dark);
    margin-bottom: 24px;
}

.intro-description p:last-child {
    margin-bottom: 0;
}

.intro-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
}

/* CONTACT SECTION */
.contact-section {
    padding: 120px 0;
    background: #f9f9f9;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.contact-details {
    margin-top: 40px;
}

.contact-details p {
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: var(--const-text-dark);
}

.premium-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.premium-form input,
.premium-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.premium-form input:focus,
.premium-form textarea:focus {
    outline: none;
    border-color: #2c2c2c;
    box-shadow: 0 0 0 3px rgba(44, 44, 44, 0.1);
}

.premium-form textarea {
    height: 120px;
    margin-bottom: 20px;
    resize: none;
}

.submit-btn {
    padding: 16px 48px;
    background: #2c2c2c;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #000;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 0;
    background: white;
    font-size: 0.9rem;
    color: #999;
}

/* Responsive */
@media (max-width: 992px) {
    .intro-grid, .contact-grid { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 3.5rem; }
}
