/* General Resets */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Accessibility: Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: white;
    padding: 8px;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    border-bottom: 1px solid #ddd;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 10px;
    font-size: 15px;
    color: black;
}

.nav-links:hover {
    color: rgb(55, 55, 198);

}

.logo-text {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
    font-family: Garamond, Georgia, 'Times New Roman', Times, serif;
}

/* Hero Section */
.hero-image-container {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4; /* Low opacity as requested */
    z-index: -1;
}

.hero-content h1 {
    font-style: italic;
    font-size: 1.5rem;
}

/* Designer Samples Section */
.samples {
    padding: 50px 10%;
}

.samples-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.polaroid-frame {
    background: white;
    padding: 15px 15px 30px 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border: 1px solid #eee;
    width: fit-content;
    margin: 0 auto;
}

.polaroid-frame img {
    max-width: 250px;
    display: block;
    margin-bottom: 10px;
}

.caption {
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
}

/* Planning Section */
.section-divider {
    border: 0;
    border-top: 1px solid #000;
    margin: 20px 5%;
}

.centered-title {
    text-align: center;
    margin: 30px 0;
    letter-spacing: 3px;
}

.planning-intro {
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: center;
}

/* Form Styles */
.contact-form {
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    display: grid;
    grid-template-columns: 80px 1fr;
    margin-bottom: 15px;
    align-items: center;
}

input {
    padding: 8px;
    border: 1px solid #000;
}

.submit-btn {
    display: block;
    width: 150px;
    margin: 20px auto;
    padding: 10px;
    border-radius: 20px;
    background: white;
    border: 1px solid #000;
    cursor: pointer;
    font-weight: bold;
}

/* Schedule Section */
.schedule {
    text-align: center;
    padding: 50px 0;
}

.schedule-box {
    border: 1px solid #000;
    width: 80%;
    max-width: 600px;
    height: 150px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-number {
    text-decoration: underline;
    color: rgb(55, 55, 198);
}

/* Footer */
footer {
    padding: 40px;
    border-top: 1px solid #ddd;
    text-align: center;
}