* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

:root {
    --primary-color: #EF6124;
    --primary-light: rgba(239, 97, 36, 0.05);
    --text-color: #2d3436;
    --bg-color: #ffffff;
    --secondary-bg: #f8f9fa;
    --transition: all 0.3s ease;
}

body {
    background: linear-gradient(135deg, var(--primary-light), var(--bg-color) 15%, var(--bg-color) 85%, var(--primary-light));
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    width: 90%;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background-color: var(--bg-color);
    border-radius: 20px;
    /* box-shadow: 0 10px 30px rgba(239, 97, 36, 0.05); */
    border: 1px solid rgba(239, 97, 36, 0.05);
}

.logo-container {
    width: 100%;
    max-width: 300px;
    margin-bottom: 2rem;
    transition: var(--transition);
    padding: 2rem;
    border-radius: 15px;
    /* background: linear-gradient(135deg, var(--primary-light), transparent); */
}

.logo-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

#contact-methods {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 800px;
}

.contact-item {
    background-color: var(--secondary-bg);
    padding: 1.5rem;
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(239, 97, 36, 0.1);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-bg));
}

.contact-item a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-color);
}

.contact-item svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover svg {
    transform: scale(1.1);
}

.contact-link {
    font-size: 0.82em;
    line-height: 1.4;
}

.contact-label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

footer {
    background: linear-gradient(to bottom, var(--bg-color), var(--primary-light));
    padding: 2rem 0;
    margin-top: auto;
    border-top: 1px solid rgba(239, 97, 36, 0.05);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-color);
    transition: var(--transition);
    border: 1px solid rgba(239, 97, 36, 0.05);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(239, 97, 36, 0.1);
    background-color: var(--primary-color);
}

.social-links a:hover svg {
    fill: white;
}

.social-links svg {
    width: 24px;
    height: 24px;
    transition: var(--transition);
}

.copyright {
    text-align: center;
    color: var(--text-color);
    font-size: 0.9rem;
}

.copyright span {
    color: var(--primary-color);
    font-weight: 500;
}

.copyright a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
}

/* Intro Blurb */
.intro-blurb {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.intro-blurb h1 {
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    white-space: nowrap;
}

.intro-blurb p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 97, 36, 0.2);
}

/* Navigation */
nav {
    width: 100%;
    margin-bottom: 2rem;
    text-align: center;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: var(--transition);
}

nav a:hover,
nav a.active {
    color: var(--primary-color);
    background-color: var(--primary-light);
}

/* Photo Gallery */
.photo-gallery {
    width: 100%;
    text-align: center;
}

.photo-gallery h2 {
    color: var(--text-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.view-gallery {
    margin-top: 2rem;
    text-align: center;
}

.view-gallery a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.view-gallery a:after {
    content: '→';
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.view-gallery a:hover:after {
    transform: translateX(4px);
}

.view-gallery .button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
    font-weight: 500;
}

.view-gallery .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 97, 36, 0.2);
}

/* Gallery Page */
.gallery-page {
    width: 100%;
    padding: 0 1rem;
}

.gallery-page h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-size: 2rem;
}

.gallery-page .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    margin-bottom: 2rem;
}

.gallery-page .gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-page .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-page .gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gallery-page .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-page h1 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .gallery-page .gallery-grid {
        display: block;
    }
    
    .gallery-page .gallery-item {
        margin-bottom: 1rem;
    }
    
    .gallery-page .gallery-item:last-child {
        margin-bottom: 0;
    }
    
    .gallery-page h1 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    main {
        width: 100%;
        margin: 1rem auto;
        padding: 1rem;
    }

    .logo-container {
        max-width: 250px;
        padding: 1.5rem;
    }

    .intro-blurb h1 {
        font-size: 1.75rem;
        white-space: normal;
        padding: 0 1rem;
    }

    .intro-blurb p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .photo-gallery {
        padding: 1rem 0;
    }

    .gallery-grid {
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .contact-item {
        padding: 1.25rem;
    }

    .contact-item svg {
        width: 32px;
        height: 32px;
    }

    .contact-link {
        font-size: 0.9em;
    }

    .contact-label {
        font-size: 0.8em;
    }

    #contact-methods {
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        padding: 8px;
    }

    .copyright {
        font-size: 0.9rem;
        padding: 0 1rem;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    main {
        padding: 0.5rem;
    }

    .logo-container {
        max-width: 200px;
        padding: 1rem;
    }

    .intro-blurb h1 {
        font-size: 1.5rem;
    }

    .intro-blurb {
        margin-bottom: 2rem;
    }

    .photo-gallery h2 {
        font-size: 1.25rem;
    }

    .gallery-grid {
        gap: 0.75rem;
    }

    .contact-item {
        padding: 1rem;
    }

    .social-links a {
        width: 36px;
        height: 36px;
        padding: 7px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        grid-column: 1 / -1;
    }
}

/* Contact Form */
.contact-form-section {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-form-section h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-size: 2rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--text-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid rgba(239, 97, 36, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(239, 97, 36, 0.1);
}

.radio-group {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.radio-group input[type="radio"] {
    margin-right: 0.5rem;
}

.submit-button {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 97, 36, 0.2);
}

/* File Input Styling */
.form-group input[type="file"] {
    display: none;
}

.form-group .file-upload-label {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--secondary-bg);
    border: 1px solid rgba(239, 97, 36, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    color: var(--text-color);
}

.form-group .file-upload-label:hover {
    border-color: var(--primary-color);
    background-color: rgba(239, 97, 36, 0.05);
}

.form-group .file-upload-label::before {
    content: '📎';
    margin-right: 8px;
}

.file-name {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 1rem;
    }

    .contact-form-section h1 {
        font-size: 1.75rem;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group textarea {
        padding: 0.5rem;
    }

    .submit-button {
        padding: 0.75rem 1.5rem;
    }
}

/* Thank You Page */
.thank-you-section {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}

.thank-you-section h1 {
    color: var(--text-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thank-you-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .thank-you-section {
        padding: 1rem;
    }

    .thank-you-section h1 {
        font-size: 2rem;
    }

    .thank-you-section p {
        font-size: 1rem;
    }
}