/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Permanent+Marker&display=swap');

:root {
    --primary-color: #e41c2b;
    --secondary-color: #222;
    --text-color: #333;
    --light-color: #f4f4f4;
    --dark-color: #111;
    --gray-color: #888;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
}

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

ul {
    list-style: none;
}

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

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

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #c01020;
    transform: translateY(-3px);
}

/* Header Styles */
header {
    background-color: var(--dark-color);
    color: #fff;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 150;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.header-wrapper {
    background-color: var(--dark-color);
    position: sticky;
    top: 0;
    z-index: 150;
    width: 100%;
}

.logo {
    flex: 0 0 auto;
}

.logo h1 {
    font-family: 'Permanent Marker', cursive;
    font-size: 28px;
    color: var(--primary-color);
    margin: 0;
}

.logo span {
    font-size: 20px;
    margin-left: 5px;
    color: #fff;
}

.desktop-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.desktop-nav ul {
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.desktop-nav ul li {
    list-style: none;
}

.desktop-nav ul li a {
    color: #fff;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    text-decoration: none;
}

.desktop-nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    left: 0;
    bottom: 0;
    transition: width 0.3s ease;
}

.desktop-nav ul li a:hover:after,
.desktop-nav ul li a.active:after {
    width: 100%;
}

.book-btn {
    flex: 0 0 auto;
    margin-left: 20px;
}

.book-btn .btn {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: none;
}

.book-btn .btn:hover {
    background-color: #c01020;
    transform: translateY(-3px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 200;
    padding: 5px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

.menu-toggle:focus {
    outline: none;
}

/* Mobile Menu Styles */
#mobileNav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--dark-color);
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    z-index: 140;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    overflow-y: auto;
}

#mobileNav.active {
    right: 0;
}

#mobileNav ul {
    flex-direction: column;
    margin-bottom: 15px;
    padding-top: 20px;
    list-style: none;
    padding-left: 0;
}

#mobileNav ul li {
    margin: 10px 0;
    width: 100%;
    text-align: left;
}

#mobileNav ul li a {
    display: block;
    padding: 10px 0;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
}

.mobile-book-btn {
    text-align: center;
    margin-top: 20px;
}

.mobile-book-btn .btn {
    width: 100%;
    max-width: 200px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1547124860-5cf62a661424?auto=format&fit=crop&q=85&w=1920');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Info Banner */
.info-banner {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 20px 5%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    margin: 10px 20px;
}

.info-item i {
    font-size: 24px;
    margin-right: 15px;
    color: var(--primary-color);
}

/* Featured Section */
.featured {
    padding: 80px 5%;
    text-align: center;
}

.featured h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.gallery-item {
    flex: 0 0 calc(33.333% - 30px);
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-item h3 {
    padding: 15px;
    background: var(--light-color);
}

/* Testimonial Section */
.testimonial {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1619001724024-2f7319db4b7b?auto=format&fit=crop&q=80&w=1920&h=1080');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 5%;
    text-align: center;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-content i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 24px;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-content h3 {
    font-size: 18px;
    color: var(--gray-color);
}

/* CTA Section */
.cta {
    padding: 80px 5%;
    text-align: center;
    background-color: var(--light-color);
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 18px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 50px 5% 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-family: 'Permanent Marker', cursive;
    font-size: 24px;
    color: var(--primary-color);
}

.footer-logo span {
    font-size: 18px;
    margin-left: 5px;
    color: #fff;
}

.footer-logo p {
    color: var(--gray-color);
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

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

.footer-links ul li a {
    color: var(--gray-color);
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    color: var(--gray-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.social-icons a i {
    color: #fff;
    font-size: 18px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-color);
}

/* About Page */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1560707854-fb9a10ced4e1?auto=format&fit=crop&q=80&w=1920&h=1080');
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.about-section {
    padding: 80px 5%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-img {
    flex: 1;
    min-width: 300px;
}

.about-img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.team-section {
    padding: 80px 5%;
    background-color: var(--light-color);
    text-align: center;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.team-member {
    flex: 0 0 calc(33.333% - 30px);
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-info {
    padding: 20px;
}

.team-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-info p {
    color: var(--gray-color);
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
}

.team-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background-color: var(--light-color);
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background-color: var(--primary-color);
}

.team-social a:hover i {
    color: #fff;
}

.team-social a i {
    color: var(--secondary-color);
    font-size: 16px;
}

/* Services Page */
.services-section {
    padding: 80px 5%;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 0 0 calc(33.333% - 30px);
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-info {
    padding: 20px;
}

.service-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-info p {
    margin-bottom: 15px;
    color: var(--gray-color);
}

.service-info .price {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Portfolio Page */
.portfolio-section {
    padding: 60px 5%;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.portfolio-filters button {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    margin: 0 15px;
    padding: 8px 0;
    cursor: pointer;
    position: relative;
    color: var(--text-color);
}

.portfolio-filters button:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    left: 0;
    bottom: 0;
    transition: width 0.3s ease;
}

.portfolio-filters button:hover:after,
.portfolio-filters button.active:after {
    width: 100%;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.portfolio-info p {
    font-size: 14px;
    color: #ddd;
}

.load-more {
    text-align: center;
    margin-top: 40px;
}

/* Contact Page */
.contact-section {
    padding: 80px 5%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.info-card {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.info-card i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 20px;
}

.info-card div h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.info-card div p {
    color: var(--gray-color);
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

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

/* Additional Info Section */
.additional-info {
    padding: 80px 5%;
    background-color: var(--light-color);
    text-align: center;
}

.additional-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
}

.step-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 30px;
}

.step h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.step p {
    color: var(--gray-color);
    font-size: 14px;
}

/* Map Section */
.map-section {
    padding: 80px 5%;
    text-align: center;
    background-color: var(--light-color);
}

.map-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.map-container {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* Social Media in Contact Page */
.social-media {
    margin-top: 30px;
}

.social-media h3 {
    margin-bottom: 15px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .gallery-item {
        flex: 0 0 calc(50% - 20px);
    }
    
    .service-card,
    .team-member {
        flex: 0 0 calc(50% - 20px);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .featured h2, 
    .testimonial-content p,
    .cta h2,
    .additional-info h2,
    .map-section h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        position: relative;
        z-index: 200;
    }
    
    .desktop-nav, .book-btn {
        display: none;
    }
    
    header {
        padding: 15px 5%;
        position: relative;
    }
    
    .logo {
        z-index: 200;
    }
    
    #mobileNav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--dark-color);
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 140;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        overflow-y: auto;
    }
    
    #mobileNav.active {
        right: 0;
    }
    
    #mobileNav ul {
        flex-direction: column;
        margin-bottom: 15px;
        padding-top: 20px;
    }
    
    #mobileNav ul li {
        margin: 10px 0;
        width: 100%;
        text-align: left;
    }
    
    #mobileNav ul li a {
        display: block;
        padding: 10px 0;
        font-size: 18px;
    }
    
    .mobile-book-btn {
        text-align: center;
        margin-top: 20px;
    }
    
    .mobile-book-btn .btn {
        width: 100%;
        max-width: 200px;
    }
    
    .book-btn {
        display: none;
    }
    
    nav ul {
        display: none;
    }
    
    .hero {
        height: 60vh;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-content > div {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .contact-section {
        flex-direction: column;
    }
    
    .contact-info, 
    .contact-form {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        width: 100%;
        max-width: 300px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .logo h1 {
        font-size: 24px;
    }
    
    .logo span {
        font-size: 16px;
    }
    
    nav ul li {
        margin: 8px 0;
    }
    
    .gallery-item,
    .service-card,
    .team-member {
        flex: 0 0 100%;
    }
    
    .gallery {
        gap: 20px;
    }
    
    .about-section {
        flex-direction: column;
    }
    
    .info-banner {
        flex-direction: column;
        align-items: center;
    }
    
    .portfolio-filters button {
        margin: 5px;
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .featured h2, 
    .testimonial-content p,
    .cta h2,
    .additional-info h2,
    .map-section h2 {
        font-size: 24px;
    }
    
    .testimonial-content p {
        font-size: 18px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .service-info h3 {
        font-size: 18px;
    }
    
    .service-info p {
        font-size: 14px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
}

/* Small mobile devices */
@media (max-width: 375px) {
    .hero-content h1 {
        font-size: 24px;
    }
    
    .featured h2, 
    .cta h2,
    .additional-info h2,
    .map-section h2 {
        font-size: 22px;
    }
    
    .testimonial-content p {
        font-size: 16px;
    }
    
    .info-item {
        margin: 8px 0;
    }
    
    .info-item i {
        font-size: 20px;
    }
    
    .footer-logo h2 {
        font-size: 22px;
    }
} 