:root {
    --primary: #0B3A69;   /* Deep Navy */
    --accent: #FF6A00;    /* Orange */
    --dark: #000000;
    --light: #FFFFFF;
    --gray-bg: #f4f6f8;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #222;
    scroll-behavior: smooth;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    
}

/* ================= HEADER ================= */

header {
    background: var(--dark);
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: clamp(260px, 40vw, 520px);
    height: auto;
    opacity: 0;
    filter:
        drop-shadow(0 0 20px rgba(255,255,255,0.7))
        drop-shadow(0 0 20px rgba(255,255,255,0.7));
    transform: translateY(-10px);
    animation: fadeInLogo 1.2s ease forwards;
}

.insta img {
    height: 20px;
    opacity: 0;
    transform: translateY(-10px);
    animation: fadeInLogo 1.2s ease forwards;

}

@keyframes fadeInLogo {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-btn {
    background: var(--accent);
    color: var(--light);
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s ease;
}

.nav-btn:hover {
    background: #ff7f1f;
}

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

.hero {
    position: relative;
    min-height: 85vh;

    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url('/Images/background.jpg');

    background-size: cover;
    background-position: center 70%;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: var(--light);
    padding: 0 8%;
}

.hero h2 {
    font-size: clamp(20px, 5vw, 30px);
    margin-top: 20px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* ================= SOCIAL BANNER ================= */

.social-banner {
    position: relative;
    height: 320px;

    margin: 40px 40px;   /* small outer spacing */
    width: auto;

    border-radius: 16px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.15),
        0 4px 10px rgba(0,0,0,0.1);
}

/* Background slides stacked */
.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: 
        opacity 2s cubic-bezier(0.4, 0.0, 0.2, 1),
        transform 6s ease;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Overlay content */
.social-overlay {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.55);
    padding: 40px 40px;
    border-radius: 8px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-icons img {
    height: 40px;
    transition: 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.15);
}

/* ================= BUTTONS ================= */

.btn {
    background: var(--accent);
    color: var(--light);
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn:hover {
    background: #ff7f1f;
    transform: translateY(-2px);
}

/* ================= SECTIONS ================= */

section {
    padding: 30px 8%;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    color: var(--primary);
}

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

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

.card {
    background: var(--light);
    overflow: hidden;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary);
}

.card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

.card:hover {
    transform: translateY(-6px);
    border-top: 4px solid var(--accent);
}

/* Keep the main renovation card orange by default */
.highlight {
    border-top: 6px solid var(--accent);
}

/* ================= WHY US ================= */

.why-us {
    background: var(--primary);
    color: var(--light);
}

.why-us h2 {
    color: var(--light);
}

.why-us ul {
    list-style: none;
    text-align: center;
}

.why-us li {
    margin: 15px 0;
    font-size: 18px;
}

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

.contact-section {
    background: var(--gray-bg);
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* ================= FOOTER ================= */

footer {
    background: var(--dark);
    color: #aaa;
    text-align: center;
    padding: 25px;
    font-size: 14px;
}

/* ================= REVEAL ANIMATION ================= */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}


.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ================= RESPONSIVE ================= */


/* Ultra-wide / large desktop */
@media (min-width: 1400px) {
    .hero {
        background-position: center 80%;
    }
}

/* Standard laptops & tablets */
@media (max-width: 1024px) {
    .hero {
        background-position: center 60%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        min-height: 75vh;
        background-size: cover;
        background-position: center 60%;
        padding: 80px 20px;   /* fixed padding instead of % */
    }
    .logo img {
        filter:
            drop-shadow(0 0 10px rgba(255,255,255,1.0))
            drop-shadow(0 0 10px rgba(255,255,255,1.0));
    }
}

html, body {
    overflow-x: hidden;
}