:root {
    --primary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f9f9f9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: var(--text-color);
}

/* Header Styles */
header {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/header.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
}

nav.transparent {
    background: rgba(255, 255, 255, 0);
}

.menu {
    display: none;
    flex-direction: column;
    text-align: center;
}

.menu.active {
    display: flex;
}

.menu-toggle {
    display: none;
    background: #c0392b;
    color: white;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 15px 20px;
    border-radius: 5px;
}

nav a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--accent-color);
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Sections */
section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

/* About Section */
#about {
    background: var(--light-bg);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
}

/* Pricing Section */
#pricing {
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.price-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.price-card:hover {
    transform: scale(1.05);
}

.price {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin: 20px 0;
}

/* Address Section */
#address {
    background: var(--light-bg);
}

.address-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.address-content i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.address-content h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.address-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

button {
    background: var(--accent-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 20px;
}

button:hover {
    background: #c0392b;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 20px;
}

.logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.social-links {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: var(--accent-color);
    margin: 0 10px;
    font-size: 2rem;
    transition: color 0.3s, transform 0.3s;
    visibility: visible;
    opacity: 1;
}

.social-links a:hover {
    color: var(--accent-color);
    transform: scale(1.2);
}

.start-btn {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 50px;
    text-decoration: none;
    text-align: center;
}

.start-btn:hover {
    background: #c0392b;
}

.direction-btn {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 50px;
    text-decoration: none;
    text-align: center;
}

.direction-btn:hover {
    background: #c0392b;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .menu {
        display: none;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .menu-toggle {
        display: block;
    }

    .menu.active {
        display: flex;
    }

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

    header {
        height: auto;
        padding: 10px 0;
    }
}

@media (min-width: 769px) {
    .menu {
        display: flex;
        flex-direction: row;
        justify-content: center;
        list-style: none;
        gap: 30px;
    }
} 

/* About Me Section */
.about-me-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-me-text {
    flex: 1;
}

.about-me-text h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.about-me-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--text-color);
}

.about-me-image {
    flex: 1;
    text-align: center;
}

.about-me-image img {
    max-width: 350px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive design for about me section */
@media (max-width: 768px) {
    .about-me-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .about-me-image {
        order: -1; /* Image appears first on mobile */
    }
}

/* Blog Styles */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.blog-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.blog-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.read-more:hover {
    color: #c0392b;
} 