/**
 * Estilos personalizados - Rosa de Sarom Buffet
 */

/* Variáveis de cores */
:root {
    --primary-color: #9c27b0;
    --primary-dark: #7b1fa2;
    --primary-light: #e1bee7;
    --secondary-color: #ff9800;
    --secondary-dark: #f57c00;
    --secondary-light: #ffe0b2;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --white-color: #ffffff;
    --success-color: #00b894;
    --warning-color: #fdcb6e;
    --danger-color: #d63031;
}

/* Estilos gerais */
body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn {
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.section-title {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    text-align: center;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

/* Cabeçalho */
.site-header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-bar {
    font-size: 0.9rem;
}

.navbar {
    padding: 15px 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-color) !important;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-light .navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--primary-color);
}

.social-links .list-inline-item a {
    color: white;
    margin-left: 10px;
    font-size: 1rem;
}

/* Banner principal */
.banner-principal {
    margin-bottom: 2rem;
}

.banner-principal .carousel-item {
    height: 70vh;
    background-color: #000;
}

.banner-principal .carousel-item img {
    object-fit: cover;
    height: 100%;
    opacity: 0.7;
}

.banner-principal .carousel-caption {
    bottom: 30%;
    padding: 1rem;
}

.banner-principal .carousel-caption h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-principal .carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Galeria */
.gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 5px;
}

.gallery-item img {
    transition: all 0.5s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-info {
    text-align: center;
    color: white;
    padding: 20px;
}

.gallery-info h5 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gallery-info span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Depoimentos */
.testimonial-quote {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.5;
    margin-bottom: 15px;
}

.testimonial-author {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

/* Contato */
.contact-info {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 5px;
    height: 100%;
}

.contact-info h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-info ul {
    margin-bottom: 25px;
}

.contact-info ul li {
    margin-bottom: 15px;
    font-size: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

.map-container {
    border-radius: 5px;
    overflow: hidden;
}

/* Rodapé */
.site-footer {
    background-color: var(--dark-color);
    color: white;
}

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.site-footer .social-links {
    margin-top: 20px;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.developer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Página de serviços */
.service-item {
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Página de sobre */
.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.team-member img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 5px solid white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.team-member h4 {
    margin-bottom: 5px;
}

.team-member p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 991.98px) {
    .banner-principal .carousel-item {
        height: 450px;
    }
    
    .carousel-caption h2 {
        font-size: 2.5rem;
    }
    
    .carousel-caption p {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .banner-principal .carousel-item {
        height: 350px;
    }
    
    .carousel-caption h2 {
        font-size: 2rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    
    .navbar-nav {
        margin-top: 15px;
    }
    
    .btn-primary.ms-lg-3 {
        margin-top: 10px;
        display: block;
    }
}

@media (max-width: 575.98px) {
    .banner-principal .carousel-item {
        height: 250px;
    }
    
    .carousel-caption h2 {
        font-size: 1.5rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .carousel-caption .btn {
        font-size: 0.8rem;
        padding: 5px 15px;
    }
} 