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

/* Main Styling */
html, body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7em;
}

a {
    color: #333;
    text-decoration: none;
}

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

p {
    margin: 10px 0;
}

/* Utility Classes */
.container {
    margin: auto;
    max-width: 1100px;
    overflow: auto;
    padding: 0 20px;
}

.text-primary {
    color: #f7c08a;
}

.lead {
    font-size: 20px;
}

.btn {
    display: inline-block;
    font-size: 18px;
    color: #fff;
    background: #333;
    padding: 13px 20px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #f7c08a;
    color: #333;
}

.btn-light {
    background: #f4f4f4;
    color: #333;
}

.bg-dark {
    background: #333;
    color: #fff;
}

.bg-light {
    background: #f4f4f4;
    color: #333;
}

.bg-primary {
    background: #f7c08a;
    color: #333;
}

.clr {
    clear: both;
}

.l-heading {
    font-size: 40px;
}

/* Padding */
.py-1 { padding: 10px 0; }
.py-2 { padding: 20px 0; }
.py-3 { padding: 30px 0; }

/* Navbar */
#navbar {
    background: #333;
    color: #fff;
    overflow: auto;
}

#navbar a {
    color: #fff;
}

#navbar h1 {
    float: left;
    padding-top: 20px;
}

#navbar ul {
    list-style: none;
    float: right;
}

#navbar ul li {
    float: left;
}

#navbar ul li a {
    display: block;
    padding: 20px;
    text-align: center;
    transition: background 0.3s ease;
}

#navbar ul li a:hover,
#navbar ul li a.current {
    background: #444;
    color: #f7c08a;
}

/* Showcase */
#showcase {
    background: url('../img/showcase.jpg') no-repeat center center/cover;
    height: 600px;
}

#showcase .showcase-content {
    color: #fff;
    text-align: center;
    padding-top: 250px;
}

#showcase .showcase-content h1 {
    font-size: 60px;
    line-height: 1.2em;
}

#showcase .showcase-content p {
    padding-bottom: 20px;
    line-height: 1.7em;
}

/* Locations Grid */
.locations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.location-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.location-card h3 {
    padding: 15px 20px 5px;
    color: #333;
}

.location-card p {
    padding: 0 20px 20px;
    font-size: 15px;
    line-height: 1.6em;
}

/* Image Slider */
.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #eee;
}

.slider .slides {
    position: relative;
    width: 100%;
    height: 220px;
}

.slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slider .slide.active {
    opacity: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 3px;
    z-index: 2;
    transition: background 0.3s ease;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.slider-btn.prev {
    left: 8px;
}

.slider-btn.next {
    right: 8px;
}

.slider-dots {
    text-align: center;
    padding: 10px 0;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 2;
}

.slider-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-dots .dot.active {
    background: #f7c08a;
}

/* About */
#about .container img {
    display: block;
    margin: 20px auto 0;
}

/* Contact Page */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.contact-card {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    background: #fff;
    border-radius: 10px;
    padding: 30px 25px;
    text-align: center;
    text-decoration: none;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.contact-card h3 {
    padding-bottom: 5px;
    color: #333;
}

.contact-card p {
    color: #666;
    margin: 5px 0 15px;
}

.contact-action {
    display: inline-block;
    color: #f7c08a;
    font-weight: bold;
    font-size: 15px;
    transition: color 0.3s ease;
}

.contact-card:hover .contact-action {
    color: #333;
}

.location-info-card {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    text-decoration: none;
    color: #333;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.location-info-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.location-info-card h3 {
    padding: 15px 15px 5px;
    color: #333;
}

.location-info-card p {
    padding: 0 15px 10px;
    color: #666;
}

.location-info-card .contact-action {
    display: block;
    padding: 0 15px 20px;
}

/* Footer */
#main-footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
}

#main-footer a {
    color: #f7c08a;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }

    #navbar h1 {
        float: none;
        text-align: center;
        padding-bottom: 0;
    }

    #navbar ul {
        float: none;
        text-align: center;
        padding-bottom: 10px;
    }

    #navbar ul li {
        float: none;
        display: inline-block;
    }

    #showcase {
        height: 400px;
    }

    #showcase .showcase-content {
        padding-top: 120px;
    }

    #showcase .showcase-content h1 {
        font-size: 32px;
    }

    .l-heading {
        font-size: 28px;
    }

    .locations-grid {
        flex-direction: column;
        align-items: center;
    }

    .location-card {
        max-width: 100%;
    }

    .contact-grid {
        flex-direction: column;
        align-items: center;
    }

    .contact-card,
    .location-info-card {
        max-width: 100%;
    }
}
