@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;500;700&display=swap');

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body {
    background: #f8f9fa; /* Light background */
    color: #333;
    text-align: center;
}
.navbar {
    position: fixed; 
    top: 0;          
    left: 0;         
    width: 100%;    
    height: 55px; 
    background-color: #a0e1ff; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
    display: flex;   
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px; 
    z-index: 1000; 
}
.navbar .logo {
    height: 35px; 
    top: 10px;
    object-fit: contain;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.navbar .cart-icon {
    font-size: 24px;
    color: #333;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    position: absolute;
    right: 20px; 
}
.navbar .cart-icon:hover {
    color: #f90;
    transform: scale(1.2);
}
.back-btn {
    background: none;
    border: 2px solid #007bff;  /* Stylish border */
    color: #007bff;
    font-size: 24px;
    cursor: pointer;
    transition: 0.3s;
    padding: 0 25px; /* Better spacing */
    border-radius: 30px; /* Rounded corners */
    outline: none;
    white-space: nowrap; /* Prevents button text wrapping */
}
.back-btn:hover {
    transform: scale(1.2);
    color: #ff5733;
    border-color: #ff5733; /* Change border color on hover */
    background: rgba(255, 87, 51, 0.1); /* Light hover effect */
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}
h1 {
    margin-top: 7%;
}
/* Feedback Button */
.feedback {
    position: fixed;
    top: 65px;  /* Moved to the top */
    right: 15px; /* Aligned to the right */
    padding: 10px 18px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background: linear-gradient(45deg, #ff8c00, #ff2e63);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}
.feedback:hover {
    background: linear-gradient(45deg, #ff5733, #ff8c00);
    transform: scale(1.1);
}
/* Contact Section */
.contact-container {
    margin: 50px auto 50px;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.contact-title {
    font-size: 28px;
    color: #ff5733;
    margin-bottom: 15px;
}
.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* Google Map */
iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 10px;
    margin-bottom: 20px;
}
/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background: #fff;
    color: #333;
    transition: 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff5733;
    outline: none;
    box-shadow: 0 0 8px rgba(255, 87, 51, 0.3);
}
.contact-form button {
    background: linear-gradient(45deg, #007bff, #00c6ff);
    border: none;
    padding: 12px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}
.contact-form button:hover {
    background: linear-gradient(45deg, #ff5733, #ff8c00);
    transform: scale(1.05);
}
/* Responsive Design */
@media (max-width: 600px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 6px;
    }
    .navbar .logo {
        margin-bottom: 10px;
        height: 30px;
    }
    .navbar .cart-icon {
        right: 35px;
        font-size: 23px;        
    }
    .back-button {
        font-size: 10px;
    }
    h1 {
        margin-top: 30%;
    }
    a {
        flex-shrink: 0; /* Prevents resizing */
        font-size: 13px;
    }
}
@media (max-width: 768px) {
    .navbar {
        flex-direction: row; /* Ensures horizontal alignment */
        justify-content: space-between; /* Keeps spacing */
        padding: 5px;
    }
    .logo {
        height: 30px; /* Slightly smaller logo */
    }
    .back-btn {
        font-size: 16px;
        padding: 5px 12px;
    }
    .cart-icon {
        font-size: 20px;
    }
    .contact-container {
        width: 95%;
        margin-top: 120px;
    }
}
@media (max-width: 480px) {
    .navbar {
        flex-direction: column;
        padding: 10px;
    }
    .logo {
        height: 35px;
    }
    .contact-title {
        font-size: 24px;
    }
}