/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #bd0e0b;
    --primary-light: #e63946;
    --secondary-color: #4f474e;
    --secondary-dark: #3a3339;
    --text-color: #212121;
    --bg-color: #ffffff;
    --light-bg: #ede5e5;
    --border-color: #ccc;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    padding: 1.2rem 0;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    transition: var(--transition);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.logo a:hover {
    color: var(--primary-color);
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border-bottom: 3px solid transparent;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    border-bottom-color: var(--primary-color);
    background-color: rgba(189, 14, 11, 0.1);
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 80%;
}

/* Main Content */
main {
    flex: 1;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(79, 71, 78, 0.85) 0%, rgba(33, 33, 33, 0.75) 100%),
                url('https://lh3.googleusercontent.com/sitesv/AAzXCkc0_Xy4ReG-hRfXCWSyVCAy7Ov0yngxJYL_T0aWMBYktZBbDFkUsMezmGeIGPI8pegjhv7916_49LO3cZmmQo1kJ2MZt0ulYnU8knpDkNuVQhH5UiRaxmhJc27zj9fMzZKnbpy8eFgQeKTmCgDU5fuWm3yXI3tnkmW1MJhSp7sl_jyeAVf5nB9B42k=w16383') center/cover;
    color: #ffffff;
    padding: 140px 2rem;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(189, 14, 11, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 100;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    color: #ffffff;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.hero .intro-text {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Content Section */
.content-section {
    padding: 4rem 2rem;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.content-section h1 {
    font-size: 2.5rem;
    font-weight: 100;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.content-section p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.content-section a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 2px solid var(--primary-color);
    transition: var(--transition);
    font-weight: 500;
}

.content-section a:hover {
    color: var(--primary-light);
    border-bottom-color: var(--primary-light);
    background-color: rgba(189, 14, 11, 0.1);
    padding: 2px 4px;
    margin: -2px -4px;
    border-radius: 3px;
}

/* Service Sections */
.service-section {
    background: linear-gradient(135deg, #ffffff 0%, var(--light-bg) 100%);
    padding: 2.5rem;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.service-section:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-section ul {
    list-style-position: inside;
    margin: 1rem 0;
    padding-left: 1rem;
}

.service-section li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.service-section .note {
    margin-top: 1rem;
    font-style: italic;
    color: var(--text-color);
}

/* Contact Section */
.contact-info {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: #ffffff;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.contact-info:hover {
    transform: scale(1.02);
}

.contact-info a {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-info a {
    font-size: 1.5rem;
    font-weight: 700;
}

.contact-section {
    margin-top: 3rem;
}

.team-list {
    list-style: none;
    margin: 2rem 0;
}

.team-list li {
    background: linear-gradient(135deg, #ffffff 0%, var(--light-bg) 100%);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-list li:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.team-list strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.team-list a {
    color: var(--primary-color);
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(189, 14, 11, 0.3);
}

.cta-box a {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

.cta-box a:hover {
    opacity: 0.8;
}

/* Gallery Placeholder */
.gallery-placeholder {
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: var(--shadow-md);
    border: 2px dashed var(--border-color);
    transition: var(--transition);
}

.gallery-placeholder:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(189, 14, 11, 0.05) 0%, #ffffff 100%);
}

.gallery-placeholder .note {
    font-size: 1.1rem;
    color: var(--text-color);
    font-style: italic;
}

/* Privacy Content */
.privacy-content {
    background: linear-gradient(135deg, #ffffff 0%, var(--light-bg) 100%);
    padding: 3rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: var(--shadow-md);
}

.privacy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.privacy-section h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.privacy-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-section ul li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.contact-details {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.last-updated {
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: #ffffff;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: auto;
    box-shadow: 0 -4px 6px rgba(0,0,0,0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
}

.footer-content a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-content p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        text-align: center;
    }

    .hero {
        padding: 80px 1rem;
        min-height: 250px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .intro-text {
        font-size: 0.9rem;
    }

    .content-section {
        padding: 2rem 1rem;
    }

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

    .content-section h2 {
        font-size: 1.5rem;
    }

    .service-section,
    .contact-info,
    .cta-box {
        padding: 1.5rem;
    }
}

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

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

