/* Custom Styles for TIPS Restaurant */

:root {
    --primary-green: #10b981;
    --secondary-green: #059669;
    --light-green: #d1fae5;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --bg-primary: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    --bg-secondary: #f9fafb;
    --card-bg: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
}

/* Logo Styles */
.logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.location-info {
    color: var(--text-secondary);
    font-weight: 500;
}

.location-info i {
    color: var(--primary-green);
}

.location-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.location-link:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

/* Main Content Styles */
.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Feature Cards */
.feature-card {
    padding: 2rem 1.5rem;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--primary-green);
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-text {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0;
}

/* CTA Button */
.cta-buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-button {
    background: var(--primary-green);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

/* Social Buttons */
.social-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-green);
    background: transparent;
    color: var(--primary-green);
}

.social-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
}

.instagram-button:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    border-color: #e6683c;
    color: white;
}

.whatsapp-button:hover {
    background: #25d366;
    border-color: #25d366;
    color: white;
}

/* Footer */
.footer-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .main-title {
        font-size: 3rem;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .logo-image {
        height: 60px;
    }
    
    .location-info {
        font-size: 0.9rem;
    }
    
    .feature-card {
        margin-bottom: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .lead-text {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .logo-image {
        height: 50px;
    }
    
    .lead-text {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .feature-card {
        padding: 1.25rem 0.75rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-text {
        font-size: 0.9rem;
    }
    
    .cta-buttons-container {
        gap: 10px;
    }
    
    .cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .social-button {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    body {
        padding: 0;
    }
    
    .container-fluid {
        padding: 0 10px;
    }
    
    header, main, footer {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.75rem;
    }
    
    .logo-image {
        height: 45px;
    }
    
    .location-info {
        font-size: 0.8rem;
    }
}

/* Smooth animations */
.feature-card, .cta-button {
    animation: fadeInUp 0.6s ease-out;
}

.feature-card:nth-child(2) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}