/* assets/css/style.css */
body {
margin: 0;
font-family: 'Inter', sans-serif;
color: #000337;
background: #ffffff;
}

.container {
max-width: 1100px;
margin: 0 auto;
padding: 60px 20px;
}

h1, h2 {
font-weight: 700;
letter-spacing: 2px;
text-align: justify;
}

p {
font-weight: 300;
line-height: 1.8;
text-align: justify;
}

.hero {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
padding: 0 20px;
flex-direction: column;
}
.hero h1 {
font-size: 4rem;
margin-bottom: 20px;
}
.hero p {
font-size: 1.5rem;
margin-bottom: 20px;
}
.hero-subtext {
font-size: 1.1rem;
color: rgba(0, 3, 55, 0.8);
max-width: 600px;
margin-top: 20px;
}
.hero-image {
max-width: 100%;
height: auto;
border-radius: 20px;
margin-top: 10%;
}

section {
padding: 80px 20px;
border-radius: 15px;
}
.about, .water, .hospitality, .design, .contact {
background: rgba(255, 255, 255, 0.9);
margin-bottom: 40px;
padding: 60px 20px;
box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.divider {
border: none;
height: 1px;
background-color: #44c8f5;
margin-bottom: 40px;
}
.bottle-gallery {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}
.bottle-gallery .bottle {
max-width: 200px;
width: 100%;
height: auto;
border-radius: 20px;
transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.bottle-gallery .bottle:hover {
transform: scale(1.05);
box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.water-image, .hospitality-image {
max-width: 100%;
height: auto;
border-radius: 20px;
margin-top: 20px;
}
.contact-form {
max-width: 500px;
margin: 30px auto 0 auto;
display: flex;
flex-direction: column;
gap: 20px;
}
.contact-form input,
.contact-form textarea {
padding: 15px 20px;
border-radius: 10px;
border: 1px solid #ccc;
font-size: 1rem;
outline: none;
transition: all 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
border-color: #44c8f5;
box-shadow: 0 0 10px rgba(68,200,245,0.2);
}
.contact-form button {
padding: 15px 20px;
border-radius: 10px;
border: none;
background-color: #44c8f5;
color: #000337;
font-weight: 600;
font-size: 1rem;
cursor: pointer;
transition: all 0.3s ease;
}
.contact-form button:hover {
background-color: #36a6e5;
box-shadow: 0 5px 15px rgba(68,200,245,0.3);
}
.footer {
text-align: center;
padding: 40px 20px;
background: rgba(0, 3, 55, 0.05);
}
.fade-in {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}
.fade-in.visible {
opacity: 1;
transform: translateY(0);
}
/* RESPONSIVE */
@media (max-width: 1024px) {
.hero h1 {
font-size: 3.5rem;
}
.hero p {
font-size: 1.3rem;
}
}
@media (max-width: 768px) {
.hero h1 {
font-size: 3rem;
}
.hero p {
font-size: 1.2rem;
}
.bottle-gallery {
flex-direction: column;
align-items: center;
}
}
