/* General Styles */
:root {
    --color-white: #ffffff;
    --color-soft-beige: #f5f5dc;
    --color-dark-charcoal: #333333;
    --color-warm-gray: #808080;
    --color-deep-navy-accent: #000080;
}

body {
    font-family: 'Arial', sans-serif; /* Modern typography */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--color-white);
    color: var(--color-dark-charcoal);
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif; /* Elegant typography */
    color: var(--color-dark-charcoal);
    margin-bottom: 15px;
}

p {
    margin-bottom: 10px;
}

a {
    color: var(--color-deep-navy-accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    border: none;
    margin: 5px;
}

.btn.primary {
    background-color: var(--color-deep-navy-accent);
    color: var(--color-white);
}

.btn.primary:hover {
    background-color: #000066;
    text-decoration: none;
}

.btn.secondary {
    background-color: var(--color-soft-beige);
    color: var(--color-dark-charcoal);
    border: 1px solid var(--color-warm-gray);
}

.btn.secondary:hover {
    background-color: #e0e0c6;
    text-decoration: none;
}

.btn.tertiary {
    background-color: transparent;
    color: var(--color-deep-navy-accent);
    border: 1px solid var(--color-deep-navy-accent);
}

.btn.tertiary:hover {
    background-color: var(--color-deep-navy-accent);
    color: var(--color-white);
    text-decoration: none;
}

/* Header - Hero Section */
.hero-section {
    background: url('../images/hero.jpg') no-repeat center center/cover;
    color: var(--color-white);
    text-align: center;
    padding: 150px 20px;
    position: relative;
    height: 80vh; /* Full-width cinematic */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Overlay for text readability */
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
    color: var(--color-white);
}

.hero-content h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: var(--color-white);
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--color-white);
}

.cta-buttons a {
    margin: 10px;
}

/* Sections */
section {
    padding: 80px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

section:nth-of-type(even) {
    background-color: var(--color-soft-beige);
}

/* Services Section */
.services-section h3 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-cards .card {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.service-cards .card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.service-cards .card h4 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--color-deep-navy-accent);
}

.service-cards .card p {
    color: var(--color-warm-gray);
}

/* About Section */
.about-section {
    text-align: left;
}

.about-section h3 {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
}

.about-section p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto;
    color: var(--color-dark-charcoal);
}

/* Portfolio Section */
.portfolio-section h3 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

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

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

/* Why Choose Us Section */
.why-choose-us-section {
    background-color: var(--color-white);
}

.why-choose-us-section h3 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.why-choose-us-section ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.why-choose-us-section li {
    background-color: var(--color-soft-beige);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    font-weight: bold;
    color: var(--color-dark-charcoal);
    transition: background-color 0.3s ease;
}

.why-choose-us-section li:hover {
    background-color: #e0e0c6;
}

/* Google Maps Section */
.map-section h3 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.map-section iframe {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Form Section */
.contact-form-section {
    background-color: var(--color-soft-beige);
}

.contact-form-section h3 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

#wallpaperContactForm {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--color-dark-charcoal);
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
    width: calc(100% - 20px);
    padding: 12px;
    border: 1px solid var(--color-warm-gray);
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-deep-navy-accent);
    outline: none;
}

#wallpaperContactForm button {
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
    margin-top: 20px;
}

#form-success {
    margin-top: 20px;
    padding: 15px;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: var(--color-dark-charcoal);
    color: var(--color-white);
    text-align: center;
    padding: 30px 20px;
    margin-top: 50px;
}

footer p {
    margin: 0;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content h2 {
        font-size: 1.4em;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

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

    .why-choose-us-section ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content h2 {
        font-size: 1.2em;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    section {
        padding: 50px 15px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.error-message {
    color: #ff6b6b;
    margin-top: 5px;
    font-size: 14px;
    animation: fadeIn 0.3s ease;
}
