/* Otto Events - Clean CSS
 * Exact styling match for ottoevents.com
 * Color Scheme:
 * - Primary accent: #ffcdb2 (warm peach/coral)
 * - Primary text: #000000 (black)
 * - Secondary text: #6d6d6d (gray)
 * - Subtle background: #dcd7ca (light beige)
 * - White: #FFFFFF
 *
 * Typography:
 * - Headers: Dancing Script (cursive)
 * - Body: Montserrat, Roboto
 */

:root {
    --color-primary: #ffcdb2;
    --color-primary-dark: #e5b89e;
    --color-primary-light: #fff5f0;
    --color-accent: #ffcdb2;
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-text: #333333;
    --color-text-light: #6d6d6d;
    --color-border: #dcd7ca;
    --color-bg-light: #f9f7f5;

    --font-heading: 'Dancing Script', cursive;
    --font-primary: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;

    --container-width: 1200px;
    --header-height: 80px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--color-black);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-primary-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-black);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 0;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-black);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-black);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-black);
    border: 2px solid var(--color-black);
}

.btn-outline:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-black);
}

.btn-white:hover {
    background-color: var(--color-primary);
}

.btn-submit {
    background-color: var(--color-primary);
    color: var(--color-black);
    width: 100%;
    padding: 16px 28px;
    font-family: var(--font-primary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--color-primary-dark);
}

/* Header - Solid White Background */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: var(--color-white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    flex-shrink: 0;
}

.header-logo a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-black);
    line-height: 1.1;
}

.logo-tagline {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-black);
    line-height: 1.2;
}

.logo-img {
    height: 50px;
    width: auto;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--color-black);
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--color-primary-dark);
    transform: scale(1.1);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.contact-btn {
    padding: 12px 28px;
    font-size: 12px;
    background-color: var(--color-primary);
    color: var(--color-black);
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-btn:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-black);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('../images/hero-bg.jpg') center/cover no-repeat;
    padding: 120px 20px 80px;
    margin-top: 0;
    position: relative;
}

.hero-content {
    width: 100%;
    max-width: var(--container-width);
    padding: 0 20px;
    text-align: right;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 400;
    color: var(--color-primary);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    margin-left: auto;
    max-width: 600px;
}

.hero-cta {
    margin-top: 40px;
    text-align: center;
    width: 100%;
}

.btn-hero {
    background-color: var(--color-primary);
    color: var(--color-black);
    padding: 16px 40px;
    font-size: 14px;
    letter-spacing: 2px;
    border: none;
    border-radius: 50px;
}

.btn-hero:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-black);
}

/* How Can We Help Section */
.help-section {
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('../images/wedding-sign.jpg') center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 60px 40px 120px;
    position: relative;
}

/* Slanted transition shape at bottom of help section */
.help-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: #B5838D;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.help-section-inner {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}

.help-card {
    background-color: var(--color-primary);
    padding: 50px;
    border-radius: 20px;
    max-width: 550px;
    border: 3px solid #B5838D;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.help-card h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--color-black);
    margin-bottom: 25px;
}

.help-card p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-black);
    line-height: 1.8;
    margin-bottom: 20px;
}

.help-card p:last-child {
    margin-bottom: 0;
}

/* Accent Bar */
.accent-bar {
    height: 150px;
    background-color: #B5838D;
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-light {
    background-color: var(--color-white);
}

.section-gray {
    background-color: var(--color-bg-light);
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--color-black);
}

.section-subtitle {
    text-align: center;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: #B5838D;
    position: relative;
    z-index: 5;
}

.services-section .section-title {
    color: var(--color-primary);
    margin-bottom: 60px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    text-align: center;
    padding: 50px 30px 40px;
    background-color: var(--color-primary);
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #a08080;
    border-radius: 50%;
    color: var(--color-white);
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--color-black);
}

.service-description {
    font-family: var(--font-body);
    color: var(--color-black);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.two-column-content {
    padding: 20px 0;
}

.two-column-content h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.two-column-content p {
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.9;
}

.two-column-image img {
    width: 100%;
    height: auto;
}

/* Destination Weddings Section */
.destination-section {
    padding: 100px 0;
    background-color: var(--color-primary);
    position: relative;
    z-index: 4;
}

/* Diagonal transition at bottom of destination section */
.destination-section::after {
    content: '';
    position: absolute;
    bottom: -99px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--color-primary);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    z-index: 10;
}

.destination-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.destination-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.destination-text h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-black);
    margin-bottom: 30px;
}

.destination-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 180px 0 100px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('../images/wedding-table.jpg') center/cover no-repeat fixed;
    position: relative;
    z-index: 1;
}

.testimonials-section .section-title {
    color: var(--color-white);
}

.testimonials-section .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background-color: var(--color-white);
    padding: 40px;
    border-left: 4px solid var(--color-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-style: italic;
    line-height: 1.9;
    margin-bottom: 25px;
    color: var(--color-text);
    font-size: 1rem;
}

.testimonial-text::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--color-primary);
    line-height: 0;
    display: block;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-black);
    font-size: 1.3rem;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 30px;
}

.about-content p {
    color: var(--color-black);
    margin-bottom: 20px;
    line-height: 1.9;
}

/* Vendor Services Section */
.vendors-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
                url('../images/bride.jpg') center/cover no-repeat;
    background-attachment: fixed;
    color: var(--color-white);
}

.vendors-section .section-title {
    color: var(--color-white);
}

.vendors-section .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.vendors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.vendor-category {
    background-color: var(--color-primary);
    padding: 40px;
    border-radius: 15px;
    border: 3px solid #B5838D;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.vendor-category h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--color-black);
    border-bottom: 2px solid #B5838D;
    padding-bottom: 15px;
}

.vendor-list {
    list-style: none;
    padding: 0;
}

.vendor-list li {
    padding: 12px 0;
    color: var(--color-text);
    position: relative;
    padding-left: 25px;
    font-size: 1rem;
}

.vendor-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #B5838D;
    border-radius: 50%;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.contact-info p {
    color: var(--color-text-light);
    margin-bottom: 30px;
    line-height: 1.9;
}

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

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--color-text);
}

.contact-item svg {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    color: var(--color-primary-dark);
}

.contact-item a {
    color: var(--color-text);
}

.contact-item a:hover {
    color: var(--color-primary-dark);
}

.contact-form-wrapper {
    background-color: var(--color-white);
    padding: 45px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-full {
    grid-column: span 2;
}

.form-group label {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    color: var(--color-text);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: var(--color-white);
    color: var(--color-text);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.site-footer {
    background-color: var(--color-primary);
    color: var(--color-black);
    padding: 70px 0 30px;
}

.footer-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-black);
    line-height: 1.1;
}

.footer-logo .logo-tagline {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-black);
    line-height: 1.2;
}

.footer-brand p {
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    color: var(--color-black);
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-text);
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #B5838D;
}

.footer-contact p {
    color: var(--color-text);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-contact a {
    color: var(--color-text);
}

.footer-contact a:hover {
    color: #B5838D;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social .social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    color: var(--color-black);
}

.footer-social .social-icon:hover {
    background-color: #B5838D;
    color: var(--color-white);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--color-text-light);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--color-text);
}

.footer-bottom a:hover {
    color: #B5838D;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-section {
        padding: 80px 0;
    }

    .vendors-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 12px 0;
    }

    .hero-section {
        background-attachment: scroll;
        padding-top: 100px;
    }

    .vendors-section {
        background-attachment: scroll;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-left: 0;
        max-width: 100%;
    }

    .help-section {
        min-height: auto;
        padding: 40px 20px;
        padding-bottom: 80px;
        justify-content: center;
        background-attachment: scroll;
    }

    .help-section::after {
        height: 60px;
    }

    .help-section-inner {
        justify-content: center;
    }

    .help-card {
        padding: 30px;
        max-width: 100%;
    }

    .help-card h2 {
        font-size: 2rem;
    }

    .accent-bar {
        height: 80px;
    }

    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .header-right {
        gap: 15px;
    }

    .social-icons {
        display: none;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .two-column-image {
        order: -1;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-section {
        padding: 60px 0;
    }

    .services-section .section-title {
        margin-bottom: 40px;
    }

    .service-card {
        padding: 40px 25px 30px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .service-icon svg {
        width: 30px;
        height: 30px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group-full {
        grid-column: span 1;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 80vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .testimonial-card {
        padding: 30px 25px;
    }

    .logo-img {
        height: 40px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .logo-tagline {
        font-size: 0.85rem;
    }

    .contact-btn {
        padding: 10px 20px;
        font-size: 11px;
    }
}

/* Form errors */
.form-errors {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #fff5f5;
    border: 1px solid #ffcdd2;
    border-radius: 4px;
    grid-column: span 2;
}

.form-errors .error {
    color: #c62828;
    margin: 0;
    font-size: 14px;
}

.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
    border-color: #ef5350;
}

.field-error {
    display: block;
    color: #ef5350;
    font-size: 13px;
    margin-top: 4px;
}

/* Contact success message */
.contact-success {
    background-color: var(--color-white);
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-success h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-black);
    margin-bottom: 15px;
}

.contact-success p {
    color: var(--color-text-light);
    font-size: 1.1rem;
}
