/* ==========================================================================

   GLOBAL DESIGN VARIABLES & RESET

   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Forum&family=Montserrat:wght@300;400;500;600&display=swap');



:root {

    --accent-aqua: #53DAD5;

    --primary-purple: #5E548E;

    --light-bg: #FAFAFC;

    --card-border: rgba(94, 84, 142, 0.08);

    --pure-white: #FFFFFF;

    --charcoal: #2B2B2B;

    --dark-overlay: rgba(255, 255, 255, 0.85);

    

    --font-heading: 'Forum', serif;

    --font-body: 'Montserrat', sans-serif;

}



* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

    -webkit-font-smoothing: antialiased;

}



body {

    background-color: var(--pure-white);

    color: var(--charcoal);

    font-family: var(--font-body);

    line-height: 1.6;

}



/* ==========================================================================

   NAVIGATION BAR

   ========================================================================== */

header {

    background-color: rgba(255, 255, 255, 0.95);

    backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(0, 0, 0, 0.05);

    position: sticky;

    top: 0;

    z-index: 1000;

}



.nav-container {

    max-width: 1200px;

    margin: 0 auto;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 16px 24px;

}



.logo a {

    display: flex;

    align-items: center;

}



.logo-img {

    height: 40px; 

    width: auto;

    object-fit: contain;

}



.nav-links {

    display: flex;

    list-style: none;

    gap: 36px;

    align-items: center;

}



.nav-links a {

    color: var(--charcoal);

    text-decoration: none;

    font-size: 0.85rem;

    font-weight: 500;

    text-transform: uppercase;

    letter-spacing: 1px;

    transition: color 0.25s ease;

}



.nav-links a:hover {

    color: var(--primary-purple);

}



/* Dropdown Menu Mechanics */

.dropdown {

    position: relative;

}



.dropdown-menu {

    position: absolute;

    top: 100%;

    left: 50%;

    transform: translateX(-50%) translateY(15px);

    background-color: var(--pure-white);

    border: 1px solid rgba(0, 0, 0, 0.06);

    list-style: none;

    padding: 12px 0;

    min-width: 260px;

    border-radius: 6px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

    opacity: 0;

    visibility: hidden;

    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);

}



.dropdown:hover .dropdown-menu {

    opacity: 1;

    visibility: visible;

    transform: translateX(-50%) translateY(5px);

}



.dropdown-menu li a {

    padding: 10px 24px;

    display: block;

    font-size: 0.8rem;

    text-transform: none;

    letter-spacing: 0.5px;

    color: #6E6E73;

}



.dropdown-menu li a:hover {

    background-color: #F5F4F9;

    color: var(--primary-purple);

}



/* ==========================================================================

   ADDED ACTIVE NAVIGATION TRACKING

   ========================================================================== */



/* Ensure nav links have relative positioning so the line aligns to them */

.nav-links a {

    position: relative;

    padding-bottom: 6px; /* Gives the underline some breathing room below the text */

}



/* Base style for the active link or when hovering */

.nav-links a.active,

.nav-links a:hover {

    color: var(--primary-purple) !important; /* Changes text color to your primary purple */

}



/* Creates the signature aqua underline indicator */

.nav-links a.active::after {

    content: '';

    position: absolute;

    bottom: 0;

    left: 50%;

    transform: translateX(-50%); /* Centers the underline under the text */

    width: 60%; /* Keeps the indicator elegant and compact under the text word length */

    height: 2px; /* Smooth, sharp line thickness */

    background-color: var(--accent-aqua, #53DAD5); /* Applies your signature light blue color */

    border-radius: 2px;

}



/* ==========================================================================

   HOMEPAGE HERO BANNER (Fixed Right Alignment & Width)

   ========================================================================== */

.hero-banner {

    position: relative;

    width: 100%;

    height: 75vh; 

    min-height: 550px;

    background-image: url('assets/hero-profile.png');

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    display: flex;

    align-items: center;

}



.hero-container {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 40px;

    

    /* These properties align the text wrapper div safely to the right side */

    display: flex;

    justify-content: flex-end; 

}



/* This targets your existing text container class and constrains its size */

.hero-content-left, 

.hero-content-right {

    width: 40%; 

    min-width: 380px; 

    max-width: 450px; /* Rigid constraint preventing text from blowing out full width */

    background-color: transparent; 

    padding: 0;

    box-shadow: none;

    display: block;

}



.hero-content-left h1,

.hero-content-right h1 {

    font-family: var(--font-heading);

    font-size: 3.6rem;

    line-height: 1.15;

    color: var(--charcoal);

    margin-bottom: 24px;

    font-weight: 400;

}



.hero-content-left p,

.hero-content-right p {

    font-size: 1.1rem;

    color: var(--charcoal);

    margin-bottom: 40px;

    font-weight: 400;

    line-height: 1.6;

}



/* Button Mechanics */

.hero-buttons {

    display: flex;

    gap: 16px;

    width: 100%; 

}



.hero-buttons .btn {

    flex: 1; 

    text-align: center;

}



/* Premium Buttons Styling */

.btn {

    display: inline-block;

    padding: 16px 32px;

    font-size: 0.85rem;

    font-weight: 600;

    text-decoration: none;

    text-transform: uppercase;

    letter-spacing: 1px;

    border-radius: 4px;

    transition: all 0.25s ease;

}



.btn-primary-blue {

    background-color: var(--accent-aqua);

    color: var(--charcoal);

    border: 1px solid var(--accent-aqua);

}



.btn-primary-blue:hover {

    background-color: #3ec8c3;

    border-color: #3ec8c3;

    transform: translateY(-2px);

    box-shadow: 0 6px 20px rgba(83, 218, 213, 0.25);

}



.btn-secondary {

    background-color: transparent;

    color: var(--charcoal);

    border: 1px solid rgba(0, 0, 0, 0.2);

    backdrop-filter: blur(5px);

}



.btn-secondary:hover {

    background-color: var(--charcoal);

    color: var(--pure-white);

    border-color: var(--charcoal);

    transform: translateY(-2px);

}



/* ==========================================

   FEATURED WORK - LANDSCAPE ROW CARDS

   ========================================== */



.featured-work {

  padding: 100px 4%;

  background-color: #F8F7FC; /* Subtle background color so the white boxes stand out */

}



.section-container {

  max-width: 1400px; /* Widened to give the 3 side-by-side boxes plenty of landscape width */

  margin: 0 auto;

}



.section-title {

  font-family: 'Forum', serif;

  font-size: 2.6rem;

  color: #333333;

  text-align: center;         /* Centers the text horizontally */

  position: relative;         /* Setting context for our decorative underline */

  padding-bottom: 16px;       /* Creates space between text and the purple line */

  margin-top: 0;

  margin-bottom: 60px;        /* Pushes the 3 project boxes down cleanly */

}



/* The decorative purple underline match */

.section-title::after {

  content: '';

  position: absolute;

  bottom: 0;

  left: 50%;                  /* Standard centering mechanism */

  transform: translateX(-50%); /* Pulls the line back to perfectly align center */

  width: 80px;                /* Controls the horizontal width of your accent line */

  height: 3px;                /* Gives it a clean, premium visual weight */

  background-color: #5E548E;  /* Your exact signature Deep Purple code */

  border-radius: 2px;         /* Smooths the line caps */

}



/* Base 3-Column Deskop Layout */

.work-columns-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 24px;

}



/* Individual White Landscape Box Configuration */

.landscape-project-box {

  display: flex;

  align-items: center; /* Vertically aligns image, text, and arrow perfectly */

  background-color: #FFFFFF; /* The solid white box background */

  border-radius: 8px;

  overflow: hidden;

  text-decoration: none;

  padding: 16px;

  transition: transform 0.25s ease, box-shadow 0.25s ease;

}



/* Box Hover Effect */

.landscape-project-box:hover {

  transform: translateY(-4px);

  box-shadow: 0 10px 20px rgba(94, 84, 142, 0.08); /* Soft corporate purple glow */

}



/* Left-Anchored Square Image Wrapper */

.box-image-square {

  width: 90px;

  height: 90px;

  flex-shrink: 0; /* Prevents the image container from compressing */

  border-radius: 6px;

  overflow: hidden;

  margin-right: 20px;

}



.square-img {

  width: 100%;

  height: 100%;

  object-fit: cover; /* Keeps mockup cropped perfectly square */

}



/* Center Text Panel - Left Justified */

.box-text-content {

  flex-grow: 1; /* Pushes text to fill empty space and locks arrow to the far right */

  text-align: left; /* Left-justified text layout */

  padding-right: 15px;

}



.box-heading {

  font-family: 'Forum', serif;

  font-size: 1.35rem;

  color: #333333;

  margin: 0 0 6px 0;

  line-height: 1.2;

}



.box-description {

  font-family: 'Montserrat', sans-serif;

  font-size: 0.9rem;

  color: #666666;

  margin: 0;

  line-height: 1.4;

}



/* Far-Right Vertically Centered Arrow Container */

.box-arrow-wrapper {

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

}



.purple-arrow {

  font-size: 1.6rem;

  color: #5E548E; /* Brand Deep Purple */

  font-weight: bold;

  transition: transform 0.2s ease;

}



/* Interactive Arrow Nudge on Card Hover */

.landscape-project-box:hover .purple-arrow {

  transform: translateX(4px);

}





/* ==========================================

   RESPONSIVE LAYOUT BREAKPOINTS

   ========================================== */



/* Tablet Optimization (Transition from 3 columns to 2 columns) */

@media (max-width: 1100px) {

  .work-columns-grid {

    grid-template-columns: repeat(2, 1fr);

  }

}



/* Mobile Layout - Stacks the entire white boxes cleanly */

@media (max-width: 768px) {

  .featured-work {

    padding: 60px 4%;

  }

  

  .work-columns-grid {

    grid-template-columns: 1fr; /* White boxes stack on top of each other */

    gap: 20px;

  }

  

  .landscape-project-box {

    padding: 20px 16px; /* Extra interior breathing room when stacked */

  }

}



/* ==========================================================================

   FOOTER

   ========================================================================== */

footer {

    background-color: #1A1A1C;

    color: #8E8E93;

    padding: 40px 20px;

    text-align: center;

    font-size: 0.85rem;

} 

/* ==========================================
   PREMIUM CONTACT PAGE LAYOUT
   ========================================== */

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Perfect balanced split screen */
    gap: 80px; /* Generous airy corporate whitespace layout */
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 8%;
    align-items: start;
}

/* Left Panel Typography */
.contact-info-panel h1 {
    font-family: 'Forum', serif; /* Signature Header Font */
    color: #5E548E; /* Deep Purple */
    font-size: 2.8rem;
    line-height: 1.2;
    margin: 15px 0;
}

.contact-info-panel p {
    font-family: 'Montserrat', sans-serif;
    color: #333333; /* Charcoal */
    line-height: 1.6;
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.availability-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2b2b2b;
}

.alternative-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-link {
    font-family: 'Montserrat', sans-serif;
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #53DAD5; /* Highlight hover with Signature Aqua */
}

/* Right Panel Form Styling */
.contact-form-panel {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* Subtle elevation drop shadow */
    border-top: 4px solid #5E548E; /* Anchored top line using Deep Purple */
}

.form-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #5E548E;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    font-family: 'Montserrat', sans-serif;
    padding: 12px;
    border: 1px solid #E1E1E1;
    border-radius: 4px;
    font-size: 1rem;
    color: #333333;
    background-color: #FAFAFA;
    transition: all 0.3s ease;
}

/* Interactive focus states */
.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #53DAD5; /* Turns Aqua when active */
    background-color: #FFFFFF;
    box-shadow: 0 0 8px rgba(83, 218, 213, 0.15);
}

/* Premium CTA Action Button Alignment */
.submit-btn {
    font-family: 'Montserrat', sans-serif;
    background-color: #53DAD5; /* Signature Aqua */
    color: #333333;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    width: 100%; /* Stretches edge-to-edge of the text inputs */
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #5E548E; /* Swaps cleanly to Deep Purple on hover */
    color: #FFFFFF;
}

/* Responsive adjustment for tablet/mobile screens */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr; /* Stacks vertically perfectly */
        gap: 40px;
        margin: 40px auto;
    }
}