/* Main CSS for Turismo Theme */

/* Header Styles */
.site-header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-branding .site-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.site-branding .site-title a {
    color: #2E7D32;
    text-decoration: none;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-navigation li {
    margin-left: 20px;
}

.main-navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: #2E7D32;
}

.header-contact {
    display: flex;
    gap: 15px;
}

.contact-item {
    text-decoration: none;
    color: #666;
    font-size: 0.9rem;
}

.contact-item i {
    color: #2E7D32;
    margin-right: 5px;
}

/* Footer Styles */
.site-footer {
    background-color: #F5F5F5;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-widget h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #2E7D32;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
}

.footer-widget li {
    margin-bottom: 10px;
}

.footer-widget a {
    text-decoration: none;
    color: #666;
}

.footer-widget a:hover {
    color: #2E7D32;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: #2E7D32;
    color: #fff;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #FF9800;
}

.site-info {
    border-top: 1px solid #ddd;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #999;
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}

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

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #2E7D32;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 20px 0;
    font-size: 0.9rem;
    color: #999;
}

.breadcrumbs a {
    color: #2E7D32;
    text-decoration: none;
}

.breadcrumbs span {
    color: #333;
}

/* Booking Form */
.booking-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.booking-form h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #2E7D32;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.booking-form button {
    width: 100%;
    padding: 12px;
    background-color: #FF9800;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.booking-form button:hover {
    background-color: #e68900;
}
