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

:root {
    --primary-color: #003d82;
    --secondary-color: #ff6b35;
    --accent-color: #f7931e;
    --light-bg: #f5f5f5;
    --text-color: #333;
    --border-color: #ddd;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

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

/* Header Styles */
.header-top {
    background: var(--primary-color);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.header-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.header-phone, .header-address {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-phone i, .header-address i {
    font-size: 16px;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    max-height: 90px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 61, 130, 0.85), rgba(0, 61, 130, 0.85)), url('img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 20px;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: white;
}

.imagetext-host {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.imagetext-host div.imagetext-image {
    flex: 1 1 40%;
}
.imagetext-host div.imagetext-text {
    flex: 1 1 60%;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 400px);
}

.content-section {
    padding: 40px 20px;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.content-section p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-section .btn {
    margin-top: 20px;
}

.alt-bg {
    background: var(--light-bg);
}

div.backgrounded {background-color:var(--primary-color); padding:2em; color:white; display:flex; gap:2em; align-items:center; border-radius: 1.5em;}
.rounded-image {aspect-ratio: 1 / 1; width:200px; height:200px; background-size: cover; border-radius: 50%; border:1px solid white; flex-shrink: 0; flex-grow:0;}
p.bigger {font-size:1.5em; flex-grow:1;}


/* Benefits Section */
.benefits-section {
    padding: 60px 20px;
    background: var(--light-bg);
}

.benefits-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.benefit-icon {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-item p {
    margin: 0;
    font-size: 15px;
}

/* Page Header */
.page-header {
    background: var(--light-bg);
    padding: 40px 20px;
    border-bottom: 3px solid var(--secondary-color);
}

.page-header h1 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 14px;
    color: #666;
}

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

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    padding: 60px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
}

.contact-info h2,
.contact-form h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    color: var(--secondary-color);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.info-item h3 i {
    font-size: 18px;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 5px rgba(255, 107, 53, 0.2);
}

.form-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: white;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 25px;
}

/* Portfolio Grid */
.portfolio-section {
    padding: 60px 20px;
}

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

.portfolio-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.portfolio-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.portfolio-item p {
    padding: 15px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
}

/* Opening Hours Content */
.opening-hours-content p {
    margin-bottom: 15px;
}

.notice {
    background: #fff3cd;
    border-left: 4px solid var(--accent-color);
    padding: 20px;
    margin-top: 30px;
    border-radius: 4px;
}

.notice h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

.notice p {
    margin-bottom: 12px;
    font-size: 15px;
}

/* Conditions List */
.conditions-list {
    list-style: none;
    padding: 0;
}

.conditions-list li {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 30px 20px;
    text-align: center;
    font-size: 14px;
    margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 15px;
        font-size: 12px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .content-section h2 {
        font-size: 24px;
    }

    .benefits-section h2 {
        font-size: 24px;
    }

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

    .page-header h1 {
        font-size: 28px;
    }

    .header-info {
        gap: 15px;
        font-size: 12px;
    }

    .benefit-icon {
        font-size: 36px;
    }

    div.backgrounded,
    .imagetext-host {
        flex-direction: column;
    }
}

@media (max-width: 600px) {

    .logo img {
        max-height: 115px;
        width: auto;
    }

    .hamburger {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        display: none;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu a {
        display: block;
        padding: 12px 20px;
    }

    .hero {
        padding: 60px 20px;
        min-height: 300px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 14px;
    }

    .content-section {
        padding: 40px 20px;
    }

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

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

    .portfolio-item img {
        height: 150px;
    }

    .header-info {
        flex-direction: column;
        gap: 5px;
    }

    .benefit-icon {
        font-size: 32px;
    }
}
