
/* Block 1 */
.hero-banner {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: -1;
}

.hero-content {
    z-index: 1;
    color: white;
    padding: 4rem 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.95);
}

.hero-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: white;
}

.hero-btn:active {
    transform: translateY(-1px);
}

.reservation-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.reservation-form .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.reservation-form .form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
}

.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px 15px 0 0;
    border-bottom: none;
}

.modal-header .btn-close {
    filter: invert(1);
}

.modal-footer .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 25px;
    padding: 10px 30px;
    font-weight: 600;
}

.modal-footer .btn-secondary {
    border-radius: 25px;
    padding: 10px 30px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

/* Block 2 */
.specialty-showcase {
padding: 100px 0;
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
position: relative;
overflow: hidden;
}

.specialty-showcase::before {
content: '';
background: url('coffee-pattern.svg') repeat;
opacity: 0.03;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
}

.specialty-showcase .container {
position: relative;
z-index: 2;
}

.specialty-content {
padding: 40px 0;
}

.specialty-badge {
display: inline-block;
background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
color: white;
padding: 8px 20px;
border-radius: 25px;
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 20px;
box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.specialty-title {
font-size: 3rem;
font-weight: 700;
color: #2c3e50;
margin-bottom: 25px;
line-height: 1.2;
}

.specialty-description {
font-size: 1.1rem;
color: #6c757d;
line-height: 1.8;
margin-bottom: 40px;
}

.specialty-features {
margin-bottom: 40px;
}

.feature-item {
display: flex;
align-items: flex-start;
margin-bottom: 25px;
padding: 20px;
background: white;
border-radius: 15px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature-icon {
font-size: 2rem;
color: #8B4513;
margin-right: 20px;
margin-top: 5px;
flex-shrink: 0;
}

.feature-text h4 {
font-size: 1.2rem;
font-weight: 600;
color: #2c3e50;
margin-bottom: 8px;
}

.feature-text p {
color: #6c757d;
margin: 0;
font-size: 0.95rem;
}

.specialty-cta {
background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
color: white;
border: none;
padding: 15px 35px;
border-radius: 30px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

.specialty-cta:hover {
transform: translateY(-3px);
box-shadow: 0 15px 35px rgba(139, 69, 19, 0.4);
background: linear-gradient(135deg, #A0522D 0%, #CD853F 100%);
}

.specialty-image-grid {
display: grid;
grid-template-columns: 2fr 1fr;
grid-template-rows: 1fr 1fr;
gap: 20px;
height: 600px;
}

.image-primary {
grid-row: 1 / 3;
position: relative;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.primary-image {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.image-primary:hover .primary-image {
transform: scale(1.05);
}

.image-overlay {
position: absolute;
bottom: 30px;
left: 30px;
background: rgba(44, 62, 80, 0.9);
color: white;
padding: 15px 25px;
border-radius: 15px;
backdrop-filter: blur(10px);
}

.overlay-text {
font-weight: 600;
font-size: 1.1rem;
}

.image-secondary {
position: relative;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.secondary-image {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.image-secondary:hover .secondary-image {
transform: scale(1.08);
}

.quality-badge {
position: absolute;
top: 15px;
right: 15px;
background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
color: white;
padding: 8px 15px;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
display: flex;
align-items: center;
gap: 5px;
box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.image-tertiary {
border-radius: 15px;
overflow: hidden;
box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.tertiary-image {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.image-tertiary:hover .tertiary-image {
transform: scale(1.08);
}

@media (max-width: 991px) {
.specialty-showcase {
padding: 60px 0;
}

.specialty-title {
font-size: 2.5rem;
}

.specialty-image-grid {
margin-top: 50px;
height: 500px;
}
}

@media (max-width: 768px) {
.specialty-title {
font-size: 2rem;
}

.specialty-image-grid {
grid-template-columns: 1fr;
grid-template-rows: 250px 150px 150px;
height: auto;
}

.image-primary {
grid-row: 1;
}

.feature-item {
flex-direction: column;
text-align: center;
}

.feature-icon {
margin-right: 0;
margin-bottom: 15px;
}
}

/* Block 3 */
.sustainable-practices {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #eef7f0 100%);
    overflow: hidden;
}

.sustainability-visual {
    position: relative;
}

.main-sustainability-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.15);
    transition: transform 0.3s ease;
}

.main-sustainability-image:hover {
    transform: scale(1.02);
}

.impact-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.metric-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.1);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.15);
}

.metric-number {
    font-size: 28px;
    font-weight: 800;
    color: #2e7d32;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 12px;
    color: #555;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sustainability-content {
    padding-left: 40px;
}

.section-header {
    margin-bottom: 40px;
}

.eco-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.sustainability-title {
    font-size: 42px;
    font-weight: 700;
    color: #1b5e20;
    line-height: 1.2;
    margin-bottom: 20px;
}

.sustainability-intro {
    font-size: 18px;
    color: #424242;
    line-height: 1.6;
    margin-bottom: 0;
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.initiative-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    border: 1px solid rgba(76, 175, 80, 0.1);
    transition: all 0.3s ease;
}

.initiative-item:hover {
    background: white;
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.1);
}

.initiative-icon img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
}

.initiative-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 8px;
}

.initiative-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 0;
}

.certification-badges {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.certification-badges img {
    height: 45px;
    width: auto;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.certification-badges img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .sustainability-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .sustainability-title {
        font-size: 36px;
    }
    
    .initiatives-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-metrics {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .sustainable-practices {
        padding: 60px 0;
    }
    
    .sustainability-title {
        font-size: 30px;
    }
    
    .impact-metrics {
        grid-template-columns: 1fr;
    }
    
    .main-sustainability-image {
        height: 300px;
    }
    
    .initiative-item {
        flex-direction: column;
        text-align: center;
    }
    
    .certification-badges {
        justify-content: center;
    }
}

/* Block 4 */
.order-form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
}

.form-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    margin: 20px auto;
    border-radius: 2px;
}

.form-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.order-form-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: relative;
}

.order-form-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #8B4513, #D2691E, #CD853F);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.1;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f8f9fa;
    display: flex;
    align-items: center;
}

.section-title::before {
    content: '';
    display: block;
    width: 6px;
    height: 24px;
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    margin-right: 12px;
    border-radius: 3px;
}

.personal-info {
    margin-bottom: 40px;
}

.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px 45px 15px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.form-control:focus {
    border-color: #8B4513;
    box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.15);
    background-color: white;
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #8B4513;
    pointer-events: none;
}

.col-md-6 {
    position: relative;
}

.product-selection {
    margin-bottom: 40px;
}

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

.product-item {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: #8B4513;
}

.product-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.product-description {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 15px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.qty-btn {
    width: 35px;
    height: 35px;
    border: 2px solid #8B4513;
    background: white;
    color: #8B4513;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #8B4513;
    color: white;
    transform: scale(1.1);
}

.qty-input {
    width: 60px;
    text-align: center;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 8px;
    font-weight: 600;
}

.order-summary {
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    color: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
}

.order-summary .section-title {
    color: white;
    border-bottom-color: rgba(255,255,255,0.3);
}

.order-summary .section-title::before {
    background: white;
}

.summary-content {
    margin-top: 20px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.summary-line.total-line {
    border-top: 2px solid rgba(255,255,255,0.3);
    border-bottom: none;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 10px;
    padding-top: 15px;
}

.free-shipping-notice {
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 10px;
    margin-top: 15px;
    text-align: center;
    font-size: 0.9rem;
}

.free-shipping-notice i {
    margin-right: 8px;
    color: #90EE90;
}

.special-requests {
    margin-bottom: 40px;
}

.special-requests textarea {
    min-height: 100px;
    resize: vertical;
}

.form-actions {
    text-align: center;
}

.order-submit-btn {
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

.order-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.4);
}

.security-notice {
    margin-top: 20px;
    color: #6c757d;
    font-size: 0.9rem;
}

.security-notice i {
    color: #28a745;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .order-form-container {
        padding: 25px 20px;
    }
    
    .form-title {
        font-size: 2.2rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .summary-line {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .order-form-section {
        padding: 50px 0;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
}
