/*
 Theme Name: Divi Child
 Theme URI: http://yoursite.com
 Description: A child theme for Divi
 Author: Your Name
 Author URI: http://yoursite.com
 Template: Divi
 Version: 1.0.0
*/

/* Import Divi styles */
@import url("../Divi/style.css");

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

h2, h3 {
    text-align: center;
    margin: 30px 0;
}

.download-btn {
    display: inline-block;
    background: #0073e6;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 10px;
    transition: background 0.3s;
}

.download-btn:hover {
    background: #005bb5;
}

.gallery-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.gallery-item {
    width: calc(33.33% - 20px);
    max-width: 300px;
    transition: transform 0.3s;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

h3 {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 48px !important;
    line-height: 5em !important;
}


/* For large screens */
h2 {
	font-family: 'Cormorant Garamond', serif !important;
    font-size: 72px !important;  
    text-align: center;
    line-height: 1.2;
}

/* For tablets */
@media (max-width: 1024px) {
    h2 {
        font-size: 60px !important;
    }
}

/* For regular mobile devices */
@media (max-width: 768px) {
    h2 {
        font-size: 42px !important;
    }
}

/* For small mobile screens */
@media (max-width: 480px) {
    h2 {
        font-size: 32px !important;
    }
}



/* Change the background color and text color for the download buttons */
.download-btn {
    background-color: #c4beb9; /* Change to your desired background color */
    color: black !important;  /* Change text color */
    padding: 10px 20px;  /* Adjust padding to make the buttons larger */
    font-size: 14px;  /* Adjust font size */
    text-decoration: none;  /* Remove underline */
    border-radius: 0px;  /* Add border radius for rounded corners */
    transition: background-color 0.3s ease;  /* Smooth transition for hover effect */
	font-family: 'Open Sans', san-serif !important;
    text-transform: uppercase;  /* Capitalize the text */
	font-weight: bold;  /* Make the text bold */

}
