/* Critical CSS styles for above-the-fold content */
:root {
    --primary-color: #d35400;
    --secondary-color: #34495e;
    --accent-color: #2ecc71;
    --light-color: #f8f9fa;
    --dark-color: #1a1a1a;
    --text-color: #2c3e50;
    --border-color: #e0e0e0;
    --font-primary: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Header & Navigation */
header {
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

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

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

.logo a {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo span:first-child, 
.logo span:last-child {
    color: var(--primary-color);
}

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

.nav-menu a {
    text-decoration: none;
    font-weight: 500;
    color: var(--dark-color);
    position: relative;
}

.btn-contact {
    padding: 10px 22px;
    border-radius: 30px;
    background-color: var(--primary-color);
    color: white !important;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--dark-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('img/amitab_interior.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 76px;
    background-repeat: no-repeat;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 26, 26, 0.85), rgba(26, 26, 26, 0.4));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    color: white;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 15px;
}

.highlight-text {
    display: inline-block;
    position: relative;
    font-weight: 700;
    color: #fff;
    padding: 3px 10px;
    background: linear-gradient(45deg, var(--primary-color), #ff8c3b);
    border-radius: 4px;
}

/* Layout shift prevention for images */
.service-img, .gallery-item, .testimonial-video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 66.67%; /* 3:2 aspect ratio */
    overflow: hidden;
}

.service-img img, .gallery-item img, .testimonial-video img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 90vh;
        background-attachment: scroll;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 100px 0 60px;
    }
    
    .hero .overlay {
        background: linear-gradient(to bottom, rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.7));
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .hamburger {
        display: block;
        cursor: pointer;
    }
    
    .nav-menu {
        position: fixed;
        top: 76px;
        right: -100%;
        flex-direction: column;
        text-align: center;
        transition: 0.3s;
        background-color: white;
        width: 100%;
        padding: 20px 0;
    }
} 