/*
Theme Name: Arch Dental Theme
Theme URI: https://example.com/arch-dental-theme
Author: Arch Dental
Author URI: https://example.com
Description: A custom WordPress theme for Arch Dental with Elementor Pro widget support.
Version: 1.0.0
Text Domain: arch-dental-theme
*/

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.arch-header {
    width: 100%;
}

.arch-header__top,
.arch-header__nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
}

.arch-header__top {
    padding: 1rem 1.5rem;
}

.arch-header__top-left,
.arch-header__top-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.arch-header__logo-link {
    flex: 0 0 auto;
}

.arch-header__logo-link img {
    max-height: 72px;
    width: auto;
}

.arch-header__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    line-height: 1;
}

.arch-header__nav {
    width: 100%;
}

.arch-header__nav-inner {
    justify-content: center;
    flex-wrap: wrap;
    padding: 0.75rem 1.5rem;
    gap: 1.25rem;
}

.arch-header__nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .arch-header__top,
    .arch-header__nav-inner {
        flex-direction: column;
        text-align: center;
    }

    .arch-header__top-left,
    .arch-header__top-right {
        justify-content: center;
        flex-wrap: wrap;
    }
}
