/* ============================================
   ARTISAN DENTAL - GLOBAL STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.75rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 0.875rem;
    font-weight: 600;
}

p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #FFF;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f0f0f0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.logo h2 {
    font-size: 1.5rem;
    margin: 0;
    color: #1a1a1a;
}

.logo .tagline {
    font-size: 0.7rem;
    color: #999;
    margin: 0;
}

.nav-links {
    display: none;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: #4a4a4a;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-link {
    display: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4a4a4a;
}

/* Buttons */
.btn-primary {
    background-color: #313131;
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
	border: 1px solid #313131;
}

.btn-primary:hover {
    background-color: transparent;
	color: #313131;
	border: 1px solid #313131;
}

.btn-secondary {
    background-color: white;
    color: #1a1a1a;
    padding: 0.75rem 1.5rem;
    border: 1px solid #313131;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.btn-secondary:hover {
    background-color: #f5f5f5;
}

.btn-large {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    display: flex;
    align-items: stretch;
    min-height: 600px;
    overflow: hidden;
}

.hero-image {
    display: none;
    width: 50%;
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.2), transparent);
}

.hero-card {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-card h4 {
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.hero-card p {
    font-size: 0.75rem;
    color: #4a4a4a;
    margin: 0;
}

.hero-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 1.5rem;
    background: linear-gradient(to bottom, #ffffff, #f9f9f9);
}

.hero-content-inner {
    max-width: 28rem;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hero-tagline {
    font-size: 0.75rem;
    color: #999;
    font-style: italic;
}

/* ============================================
   PHILOSOPHY SECTION
   ============================================ */

.philosophy {
    padding: 5rem 1.5rem;
    background-color: #ffffff;
}

.philosophy-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.philosophy-image {
    height: 24rem;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.philosophy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.philosophy-content h2 {
    margin-bottom: 1.5rem;
}

.philosophy-content p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.philosophy-list {
    list-style: none;
}

.philosophy-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.philosophy-bar {
    width: 4px;
    background-color: #313131;
    flex-shrink: 0;
}

.philosophy-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.philosophy-item p {
    font-size: 0.875rem;
    color: #4a4a4a;
    margin: 0;
}

/* ============================================
   EXPERIENCE SECTION
   ============================================ */

.experience {
    padding: 5rem 1.5rem;
    background-color: #f9f9f9;
}

.experience-container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.experience-header {
    margin-bottom: 4rem;
}

.experience-header h2 {
    margin-bottom: 1rem;
}

.experience-header p {
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto;
}

.experience-image {
    height: 500px;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
    padding: 5rem 1.5rem;
    background-color: #ffffff;
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    margin-bottom: 1rem;
}

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

.service-card {
    padding: 2rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    border-color: #313131;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.service-card:hover h3 {
    color: #313131;
}

.service-card p {
    font-size: 0.875rem;
    color: #4a4a4a;
    margin: 0;
}

/* ============================================
   SMILE SECTION
   ============================================ */

.smile {
    height: 30rem;
    position: relative;
    overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;	
}

.smile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.smile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0), transparent);
    display: flex;
    align-items: center;
}

.smile-content {
    padding: 0 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.smile-content h2 {
    color: white;
    max-width: 32rem;
    margin: 0;
}

.smile-pic {
	background-image: url('../../assets/images/smile-confidence.png');	
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center -54rem;
	background-size: cover;
}

.smile-title {
	position: absolute;
	color: #FFF;
	text-align: center;
}

.smile-title h2 {
	margin: 0;
}
/* ============================================
   CTA SECTION
   ============================================ */

.cta {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #fef3e2 0%, #ffffff 100%);
}

.cta-container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.cta-container h2 {
    margin-bottom: 1.5rem;
}

.cta-container p {
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    padding: 5rem 1.5rem;
    background-color: #F2F2F2;
    color: #313131;
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #313131;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #313131;
}

.contact-item p {
    font-size: 0.875rem;
    color: #313131;
    margin: 0;
}

.contact-item a {
    color: #313131;
}

.contact-item a:hover {
    color: #d4a574;
}

.contact-footer {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: #999;
}

.logo {
	max-width: 12%;
}

.logo img {
	max-width: 100%; 
	height: auto;
}

iframe {
	width: 100%;
	height: 250px; /* Match the viewport height */
	overflow: hidden; /* Hide scrollbars within the iframe */
	margin: 0px;
	padding: 0px;
	border: none; /* Optional: Removes the default iframe border */
	display: block; /* Ensures proper rendering */
}
.map-location {
	margin-bottom: 2.5rem;
}
/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (min-width: 768px) {
    h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 3rem;
    }

    .nav-links {
        display: flex;
    }

    .phone-link {
        display: block;
    }

    .hero {
        min-height: 600px;
    }

    .hero-image {
        display: flex;
    }

    .hero-content {
        width: 50%;
        padding: 0 3rem;
    }

    .philosophy-container {
        grid-template-columns: 1fr 1fr;
    }

    .cta-buttons {
        gap: 1.5rem;
    }
	
	.logo {
		max-width: 12%;
	}
}

@media (max-width: 769px) {
	.smile-pic {
		background-position: center -17rem;
	}
	.smile-title {
		/*padding-top: 20rem;*/
	}
	.smile-title h2 {
		/*font-size: 2rem;*/
	}
}

@media (max-width: 767px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-container {
        padding: 0 1rem;
        height: auto;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .logo {
        width: 100%;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
    }

    .nav-right {
        width: 100%;
        justify-content: center;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .philosophy {
        padding: 3rem 1rem;
    }

    .experience {
        padding: 3rem 1rem;
    }

    .services {
        padding: 3rem 1rem;
    }

    .cta {
        padding: 3rem 1rem;
    }

    .contact {
        padding: 3rem 1rem;
    }
}
@media (max-width: 425px) {
	.smile-pic {
		background-position: center -3rem;
	}
}

@media (min-width: 374px) and (max-width: 480px) {
	.logo {
		max-width: 40%;
		margin: 0 auto;
	}

	.nav-container {
		padding-bottom: 1rem;
	}
	.smile-pic {
		background-position: center -3rem;
	}
	.smile-title {
		padding-top: 15rem;
	}
	.smile-title h2 {
		font-size: 1.8rem;
	}
}

@media (max-width: 375px) {
	.logo {
		max-width: 40%;
		margin: 0 auto;
	}
	
	.smile-pic {
		background-position: center 0rem;
	}
	.smile-title {
		padding-top: 14rem;
	}
	.smile-title h2 {
		font-size: 2rem;
	}
}
