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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section {
    padding: 60px 0;
    text-align: center;
}

.bg-light {
    background-color: #ecf0f1;
}

h1, h2, h3 {
    margin-bottom: 20px;
}

/* Header & Nav */
header {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #27ae60;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ecf0f1;
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-9px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-8px, -8px);
}

/* Mobile Menu */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    #nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #2c3e50;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    #nav-menu.active {
        max-height: 400px;
    }

    #nav-menu ul {
        flex-direction: column;
        padding: 20px 0;
    }

    #nav-menu ul li {
        margin: 0;
        text-align: center;
        border-bottom: 1px solid #34495e;
    }

    #nav-menu ul li:last-child {
        border-bottom: none;
    }

    #nav-menu ul li a {
        display: block;
        padding: 15px;
    }

    .header-container {
        position: relative;
    }
}

/* Mobile Menu */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    #nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #2c3e50;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    #nav-menu.active {
        max-height: 400px;
    }

    #nav-menu ul {
        flex-direction: column;
        padding: 20px 0;
    }

    #nav-menu ul li {
        margin: 0;
        text-align: center;
        border-bottom: 1px solid #34495e;
    }

    #nav-menu ul li:last-child {
        border-bottom: none;
    }

    #nav-menu ul li a {
        display: block;
        padding: 15px;
    }

    .header-container {
        position: relative;
    }
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(44,62,80,0.5), rgba(44,62,80,0.5)), url('images/hero-bg.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ecf0f1;
    text-align: center;
}

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

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #27ae60;
    color: #ecf0f1;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background: #229954;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background: #fefdfb;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
    border-left: 4px solid #27ae60;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.service-card p {
    color: #34495e;
    font-size: 0.95rem;
    line-height: 1.5;
}

.gallery-item {
    background: #fefdfb;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.gallery-item img, .gallery-item video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s;
}

/* YouTube video wrapper for responsive sizing */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

/* YouTube thumbnail with play button */
.youtube-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    border-radius: 5px;
    background: #000;
}

.youtube-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s;
    z-index: 10;
}

.play-button:hover {
    background: rgba(255, 0, 0, 1);
}

.play-icon {
    color: white;
    font-size: 24px;
    margin-left: 4px;
}

/* Location Section */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    margin-top: 40px;
}

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

.map-container iframe {
    display: block;
    width: 100%;
}

.reviews-section {
    padding: 30px;
    background: #fefdfb;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.reviews-section h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.reviews-section p {
    color: #34495e;
    margin-bottom: 20px;
    line-height: 1.6;
}

.address-info {
    background: #ecf0f1;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 4px solid #27ae60;
}

.address-info p {
    margin: 5px 0;
    color: #2c3e50;
    font-size: 0.95rem;
}

.btn-secondary {
    background: #3498db;
    display: inline-block;
}

.btn-secondary:hover {
    background: #2980b9;
}

/* Responsive */
@media (max-width: 768px) {
    .location-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .map-container {
        order: 2;
    }
    
    .reviews-section {
        order: 1;
    }
}

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

.gallery-item h3 {
    margin-top: 15px;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }
    nav ul {
        margin-top: 15px;
    }
    .hero h1 {
        font-size: 2rem;
    }
}