/* 1. The main bar holding both your logo and your nav links */

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
}
header {
    display: flex;
    align-items: center;            
    padding: 50px 5%;              
    background-color: #ffffff;
    position: relative; /* Allows absolute positioning inside */
}
.logo {
    margin-right: 100px; /* Replaced "auto" with a specific gap size */
}

/* 2. Your shrunken desktop logo sizing */
.logo img {
    height: 150px;                  /* Snappy header size so the hero image can shine */
    width: auto;
    display: block;
}

/* 3. Your sleek navigation settings */
nav {
    display: flex;
    align-items: center;     
    gap: 50px;                     /* Clean space between individual links */
}

/* 4. Your gorgeous custom magenta link colors */
nav a {
    text-decoration: none;
    color: #940266;         
    font-weight: 600;
    font-size: 24px;
}
#hero {
    height: 100vh;                   /* Forces the section to take up 80% of the screen height */
    background-size: cover;         /* Scales the image to fill the area without stretching */
    background-position: center;    /* Keeps the center of the image focused */
    display: flex;
    align-items: center;            /* Centers the text box vertically */
    justify-content: center;        /* Centers the text box horizontally */
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.4); /* Adds a 40% dark tint so white text is easy to read */
    padding: 40px;
    border-radius: 10px;            /* Softens the corners of your text container */
    text-align: center;             /* Centers the text lines */
}
.hero-overlay h1 {
    color: #ffffff;                 /* Clean, crisp white for the main headline */
    font-size: 3rem; 
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);                /* Makes the headline big and bold */
    margin-bottom: 20px;            /* Adds space below the headline */
}

.hero-overlay p {
    color: #f0f0f0;                 /* Slightly softer off-white for the description */
    font-size: 1.5rem;              /* Makes the biophilic description easy to read */
    margin-bottom: 30px;            /* Adds space above the button */
}
/* Stacks the form inputs nicely inside your open dropdown box */
.hero-signup-form {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 15px;
    flex-wrap: wrap; /* Prevents squishing on small phone screens */
}

.hero-signup-input {
    flex: 1;
    min-width: 150px;
    padding: 10px 14px;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.submit-arrow-btn {
    background: #940266; /* Your beautiful blackberry magenta */
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.2s ease;
}

.submit-arrow-btn:hover {
    background: #750150; /* A slightly darker berry shade on hover */
}

.grid {font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 80px;
    padding: 0;

}
#proposal {
    background-color: #fcf8fa; /* Soft, warm off-white tinting toward your brand color */
    padding: 60px 20px;
    max-width: 800px;
    margin: 40px auto;
    border-radius: 12px;
    text-align: left;
}

#proposal h2 {
    color: #9d005d; /* Your brand's deep magenta/plum nav color */
    font-size: 2.2rem;
    margin-bottom: 20px;
}

#proposal p {
    font-size: 1.3rem; /* Visually larger than standard card body text */
    line-height: 1.6;
    color: #333333;
    margin-bottom: 30px;
}

#proposal ul {
    list-style: none; /* Removes standard clunky black dots */
    padding: 0;
}

#proposal li {
    font-size: 1.15rem;
    line-height: 1.5;
    color: #444444;
    margin-bottom: 16px;
    position: relative;
    padding-left: 32px; /* Leaves perfect room for custom icons */
}

/* Replaces standard bullets with a stylish custom inline checkmark */
#proposal li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #9d005d; /* Matching brand color accent */
    font-weight: bold;
    font-size: 1.2rem;
}
.movement-dropdown {
    display: inline-block;
    margin: 25px auto 0 auto;
    text-align: center;
    max-width: 400px;
    width: 100%;
     font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
     color: #ffffff; 
     position: relative;
    left: -30px; 
}
/* Petition Section Container */
#petition {
    padding: 60px 20px;
    text-align: center;
    background-color: #ffffff; /* Clean white background to contrast the form */
}

/* Magenta Petition Header */
#petition h2 {
    color: #940266; /* Replace this hex code with your exact card magenta */
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Descriptive Text */
#petition p {
    font-size: 1.1rem;
    color: #4a4a4a;
    max-width: 600px;
    margin: 0 auto 40px auto; /* Centers the text block and creates space below */
    line-height: 1.6;
}

/* Responsive Google Form Wrapper */
.form-container {
    max-width: 760px; /* Prevents the form from stretching too wide on desktop */
    margin: 0 auto;   /* Perfectly centers the form horizontally */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* Adds a subtle, sleek elevation shadow */
    border-radius: 12px;
    overflow: hidden; /* Keeps the form corners nice and crisp */
}

/* Responsive Iframe Settings */
.form-container iframe {
    width: 100%;       /* Fluid width that auto-shrinks for mobile layouts */
    height: 850px;     /* Set height to completely fit your form fields without cutting off */
    border: none;
    display: block;
}
/* The Gallery Grid Container */
.gallery {
    display: grid;
    /* This rule forces 3 equal columns on desktop, but automatically drops to 1 column on mobile devices */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px; /* Clean spacing between images */
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto; /* Centers the whole gallery on the screen */
}

/* Individual Image Styling */
.gallery img {
    width: 100%;
    height: 250px; /* Keeps all image heights identical for a clean grid look */
    object-fit: cover; /* Crops images cleanly to prevent stretching or squishing */
    border-radius: 12px; /* Smooth rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Soft elevation shadow */
    transition: transform 0.2s ease-in-out; /* Smooth hover transition */
}

/* Subtle Interactive Hover Effect */
.gallery img:hover {
    transform: scale(1.03); /* Gently pops the image out when hovered */
    cursor: pointer;
}
.caption {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 30px;
}
#intirim h2 {
    color: #940266; /* Replace this hex code with your exact card magenta */
    font-size: 2.5rem;
    margin-bottom: 15px;
    margin-left: 80px;
    font-weight: 700;
}
#intirim p {
    font-size: 1.3rem; /* Visually larger than standard card body text */
    line-height: 1.6;
    color: #333333;
    margin-bottom: 30px;
    margin-left:40px;
    margin-right: 30px;
}
/* Targets your specific flooring options list */
ul.flooring-options {
    padding-left: 80px;      /* Indents the entire block by 80px */
    margin-bottom: 30px;     /* Matches your paragraph bottom spacing */
}

ul.flooring-options li {
    font-size: 1.3rem;      /* Automatically grabs your 1.3rem */
    line-height: inherit;    /* Automatically grabs your 1.6 */
    color: inherit;          /* Automatically grabs your #333333 */
    margin-bottom: 12px;     /* Adds sharp, balanced breathing room between bullets */
}




