@font-face {
    font-family: Inter;
    src: url(assets/fonts/Inter-Regular.otf);
}
@font-face {
    font-family: Playfair;
    src: url(assets/fonts/PlayfairDisplay-Regular.otf);
}
@font-face {
    font-family: Roboto;
    src: url(assets/fonts/Roboto-Regular.ttf);
}
@font-face {
    font-family: Source Sans;
    src: url(assets/fonts/SourceSansPro-Regular.otf);
}
body{
    font-family: Roboto;
}
header{
    font-family: Playfair;
}
nav{
    font-family: Inter;
}
footer{
    font-family: Source Sans;
}
/* Navigation Style */
.navbar-brand{
    color: #E5E8EB;
    transition: transform 0.3s ease;
}

.navbar-brand:hover{
    color: #eaedef;
    transform: scale(1.1);
}

.navbar-nav a{
    color: #E5E8EB;
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #eaedef;
    transform: scale(1.1);
}
/* Button Style */
.btn-green {
    background-color: #1B3633;
    border-color: #1B3633;
    color: white;
    transition: transform 0.3s ease;
}

.btn-green:hover {
    background-color: #386f69;
    border-color: #386f69;
    color: white;
    transform: scale(1.01);
}
/* Form Style */
.form-container {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
/* Safety Style */
.safety-info {
    background-color: #f8f9fa;
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.safety-header {
    font-size: 2rem;
    color: #1B3633;
    font-weight: bold;
}

.safety-section {
    margin-top: 30px;
}

.safety-section h4 {
    color: #1B3633;
}

.safety-section ul {
    list-style-type: none;
    padding-left: 0;
}

.safety-section li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.col-left, .col-right {
    padding: 20px;
}

.col-left {
    border-right: 2px solid #ddd;
}
/* Gallery Style */
.gallery-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
}

.gallery-item {
    margin-bottom: 30px;
}

.gallery-modal .modal-content {
    background-color: #333;
    color: white;
}

.gallery-modal img {
    width: 100%;
    height: auto;
}

.gallery-header {
    font-size: 2.5rem;
    color: #1B3633;
    font-weight: bold;
    margin-bottom: 30px;
}

.gallery-description {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 20px;
}