/* ==========================================
   REDDING ALTERATIONS
   STYLE.CSS
========================================== */

:root{

    --primary:#B78A3C;
    --primary-dark:#9B7432;
    --dark:#222;
    --text:#555;
    --light:#faf8f5;
    --white:#fff;
    --border:#ececec;
    --shadow:0 20px 45px rgba(0,0,0,.08);
    
    }
    
    *{
    margin:0;
    padding:0;
    box-sizing:border-box;
    }
    
    html{
    scroll-behavior:smooth;
    }
    
    body{
    
    font-family:'Montserrat',sans-serif;
    font-size:16px;
    line-height:1.7;
    color:var(--text);
    background:#fff;
    overflow-x:hidden;
    
    }
    
    img{
    
    display:block;
    width:100%;
    
    }
    
    a{
    
    text-decoration:none;
    transition:.3s;
    
    }
    
    ul{
    
    list-style:none;
    
    }
    
    .container{
    
    width:min(1200px,92%);
    margin:auto;
    
    }
    
    /* ==========================
    HEADINGS
    ========================== */
    
    h1,h2,h3,h4{
    
    font-family:'Cormorant Garamond',serif;
    font-weight:700;
    color:var(--dark);
    
    }
    
    h2{
    
    font-size:58px;
    line-height:1.1;
    margin-bottom:20px;
    
    }
    
    h2 span{
    
    color:var(--primary);
    
    }
    
    .section-subtitle{
    
    display:inline-block;
    letter-spacing:3px;
    font-size:13px;
    font-weight:700;
    color:var(--primary);
    margin-bottom:15px;
    
    }
    
    .section-description{
    
    max-width:700px;
    margin:20px auto 60px;
    font-size:18px;
    text-align:center;
    
    }
    
    /* ==========================
    TOP BAR
    ========================== */
    
    .top-bar{
    
    background:#1f1f1f;
    color:#fff;
    padding:12px 0;
    font-size:14px;
    
    }
    
    .top-bar .container{
    
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
    
    }
    
    .top-right i{
    
    color:var(--primary);
    margin-right:6px;
    
    }
    
    /* ==========================
    HEADER
    ========================== */
    
    header{
    
    position:sticky;
    top:0;
    background:#fff;
    z-index:999;
    box-shadow:0 2px 20px rgba(0,0,0,.05);
    
    }
    
    header .container{
    
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:20px 0;
    
    }
    
    .logo h1{
    
    font-size:38px;
    
    }
    
    .logo span{
    
    color:var(--primary);
    
    }
    
    /* ==========================
    NAVIGATION
    ========================== */
    
    nav ul{
    
    display:flex;
    gap:40px;
    
    }
    
    nav a{
    
    font-weight:600;
    color:#444;
    
    }
    
    nav a:hover{
    
    color:var(--primary);
    
    }
    
    /* ==========================
    BUTTONS
    ========================== */
    
    .button,
    .gold-btn{
    
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 34px;
    background:var(--primary);
    color:#fff;
    border-radius:50px;
    font-weight:600;
    transition:.35s;
    
    }
    
    .button:hover,
    .gold-btn:hover{
    
    background:var(--primary-dark);
    transform:translateY(-3px);
    
    }
    
    .outline-btn{
    
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 34px;
    border:2px solid #fff;
    color:#fff;
    border-radius:50px;
    font-weight:600;
    
    }
    
    .outline-btn:hover{
    
    background:#fff;
    color:#222;
    
    }
    
    .full-width{
    
    width:100%;
    
    }
    
    /* ==========================
    HERO
    ========================== */
    
    .hero{
    
    position:relative;
    min-height:90vh;
    
    background:
    
    linear-gradient(rgba(0,0,0,.55),
    rgba(0,0,0,.55)),
    
    url(http://www.reddingalterations.com/img/hero_miguel.png);
    
    background-size:cover;
    background-position:center;
    
    display:flex;
    align-items:center;
    
    }
    
    .hero-grid{
    
    display:grid;
    grid-template-columns:1.3fr .7fr;
    gap:80px;
    align-items:center;
    
    }
    
    .hero-content{
    
    color:#fff;
    
    }
    
    .eyebrow{
    
    color:#f5dba2;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:20px;
    
    }
    
    .hero h2{
    
    color:#fff;
    font-size:72px;
    
    }
    
    .hero h2 span{
    
    display:block;
    color:#f7c767;
    
    }
    
    .hero p{
    
    font-size:19px;
    max-width:650px;
    margin:30px 0;
    
    }
    
    .hero-buttons{
    
    display:flex;
    gap:20px;
    margin:45px 0;
    
    }
    
    .hero-features{
    
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    
    }
    
    .feature{
    
    display:flex;
    gap:15px;
    align-items:flex-start;
    
    }
    
    .feature i{
    
    font-size:30px;
    color:#f7c767;
    
    }
    
    .feature h4{
    
    font-size:20px;
    color:#fff;
    
    }
    
    .feature p{
    
    margin-top:5px;
    font-size:14px;
    color:#ddd;
    
    }
    
    /* ==========================
    HERO CARD
    ========================== */
    
    .hero-card{
    
    background:#fff;
    padding:45px;
    border-radius:18px;
    box-shadow:var(--shadow);
    
    }
    
    .hero-card h3{
    
    font-size:36px;
    margin-bottom:25px;
    text-align:center;
    
    }
    
    .hero-card ul{
    
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-bottom:35px;
    
    }
    
    .hero-card li{
    
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:500;
    
    }
    
    .hero-card i{
    
    color:var(--primary);
    
    }
    
    /* ==========================
    SECTION SPACING
    ========================== */
    
    section{
    
    padding:110px 0;
    
    }
    
    /* ==========================
    UTILITY
    ========================== */
    
    .text-center{
    
    text-align:center;
    
    }
    
    .mb-20{
    
    margin-bottom:20px;
    
    }
    
    .mb-40{
    
    margin-bottom:40px;
    
    }
    
    .shadow{
    
    box-shadow:var(--shadow);
    
    }
    
    .rounded{
    
    border-radius:18px;
    
    }


    /* ==========================================
ABOUT
========================================== */

.about{
    background:var(--light);
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-image img{
    border-radius:20px;
    box-shadow:var(--shadow);
}

.about-content h2{
    margin-bottom:25px;
}

.about-content p{
    margin-bottom:20px;
    font-size:17px;
}

.about-checks{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:35px;
}

.about-checks div{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:600;
}

.about-checks i{
    color:var(--primary);
    font-size:20px;
}

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

.services{
    background:#fff;
    text-align:center;
}

.services-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

    margin-top:60px;

}

.service-card{

    background:#fff;

    border-radius:20px;

    padding:45px 35px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:.35s;

    border:1px solid #efefef;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.service-card .icon{

    width:80px;
    height:80px;

    margin:auto auto 30px;

    border-radius:50%;

    background:#faf4e6;

    display:flex;

    justify-content:center;

    align-items:center;

}

.service-card .icon i{

    font-size:34px;

    color:var(--primary);

}

.service-card h3{

    font-size:30px;

    margin-bottom:15px;

}

.service-card p{

    font-size:15px;

    color:#666;

}

.services-bottom{

    margin-top:70px;

    background:var(--light);

    padding:60px;

    border-radius:20px;

}

.services-bottom h3{

    font-size:40px;

    margin-bottom:15px;

}

.services-bottom p{

    max-width:700px;

    margin:0 auto 30px;

}

/* ==========================================
GALLERY
========================================== */

.gallery{

    background:var(--light);

    text-align:center;

}

.gallery-grid{

    margin-top:60px;

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    grid-auto-rows:300px;

    gap:25px;

}

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    cursor:pointer;

    box-shadow:var(--shadow);

}

.gallery-item.large{

    grid-row:span 2;

}

.gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
    transparent,
    rgba(0,0,0,.75));

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:30px;

    color:#fff;

    opacity:0;

    transition:.35s;

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}

.gallery-overlay h3{

    color:#fff;

    font-size:34px;

}

.gallery-overlay p{

    margin-top:8px;

    font-size:15px;

}

/* ==========================================
IMAGE EFFECTS
========================================== */

.gallery-item::after{

    content:"";

    position:absolute;

    inset:0;

    border:3px solid transparent;

    border-radius:20px;

    transition:.35s;

}

.gallery-item:hover::after{

    border-color:rgba(255,255,255,.35);

}

/* ==========================================
SECTION TITLES
========================================== */

.services h2,
.gallery h2,
.about h2{

    font-size:56px;

}

.services h2 span,
.gallery h2 span,
.about h2 span{

    color:var(--primary);

}


/* ==========================================
REVIEWS
========================================== */

.reviews{
    background:#fff;
    text-align:center;
}

.reviews-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    margin-top:60px;
}

.review-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:var(--shadow);
    transition:.35s;
}

.review-card:hover{
    transform:translateY(-8px);
}

.stars{
    color:#f4b400;
    font-size:26px;
    margin-bottom:20px;
}

.review-card p{
    font-style:italic;
    margin-bottom:25px;
}

.review-card h4{
    font-size:22px;
}

.review-button{
    margin-top:50px;
}

/* ==========================================
FAQ
========================================== */

.faq{
    background:var(--light);
}

.faq h2{
    text-align:center;
}

.faq-container{
    max-width:900px;
    margin:60px auto 0;
}

.faq-item{
    background:#fff;
    margin-bottom:18px;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    cursor:pointer;
    padding:24px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:18px;
    font-weight:600;
}

.faq-question i{
    color:var(--primary);
}

.faq-answer{
    display:none;
    padding:0 30px 25px;
    color:#666;
}

.faq-item.active .faq-answer{
    display:block;
}

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

.contact{
    background:#fff;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:start;
}

.contact-info h2{
    margin-bottom:20px;
}

.contact-item{
    display:flex;
    gap:20px;
    margin-top:35px;
}

.contact-item i{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#faf4e6;
    color:var(--primary);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
}

.contact-item h4{
    font-size:24px;
    margin-bottom:5px;
}

/* ==========================================
FORM
========================================== */

.contact-form{
    background:var(--light);
    padding:45px;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:18px;
    border:1px solid #ddd;
    border-radius:12px;
    font-family:inherit;
    font-size:16px;
    outline:none;
    transition:.3s;
}

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

.contact-form textarea{
    resize:vertical;
    min-height:170px;
}

.contact-form button{
    border:none;
    cursor:pointer;
}

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

footer{
    background:#1d1d1d;
    color:#ddd;
    text-align:center;
    padding:70px 0 40px;
}

footer h3{
    color:#fff;
    font-size:42px;
}

footer h3 span{
    color:var(--primary);
}

.footer-links{
    margin:35px 0;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:25px;
}

.footer-links a{
    color:#ddd;
}

.footer-links a:hover{
    color:var(--primary);
}

.copyright{
    margin-top:30px;
    color:#888;
    font-size:14px;
}

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

@media(max-width:1100px){

.hero-grid,
.about-grid,
.contact-grid{

    grid-template-columns:1fr;

}

.hero{

    text-align:center;

}

.hero-features{

    grid-template-columns:1fr;

    max-width:500px;

    margin:auto;

}

.hero-buttons{

    justify-content:center;

}

.hero-card{

    max-width:600px;

    margin:auto;

}

.gallery-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.top-bar{

    display:none;

}

header .container{

    flex-direction:column;

    gap:25px;

}

nav ul{

    flex-wrap:wrap;

    justify-content:center;

    gap:20px;

}

.hero{

    min-height:auto;

    padding:100px 0;

}

.hero h2{

    font-size:50px;

}

h2{

    font-size:42px;

}

.about-checks{

    grid-template-columns:1fr;

}

.gallery-grid{

    grid-template-columns:1fr;

    grid-auto-rows:260px;

}

.gallery-item.large{

    grid-row:auto;

}

.services-bottom{

    padding:40px 25px;

}

.contact-form{

    padding:30px;

}

.footer-links{

    flex-direction:column;

    gap:15px;

}

}

@media(max-width:500px){

.hero h2{

    font-size:40px;

}

.button,
.gold-btn,
.outline-btn{

    width:100%;

}

.hero-buttons{

    flex-direction:column;

}

.service-card{

    padding:35px 25px;

}

.review-card{

    padding:30px;

}

.contact-item{

    flex-direction:column;

}

}