/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f4f7fa;
    color: #2d3436;
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    background: #2d3436;
    padding: 20px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    font-family: "Pacifico", cursive;
    font-size: 2.5em;
    color: #dfe6e9;
    text-decoration: none;
    animation: fadeInUp .4s ease-out;
}

.logo:hover {
    color: #00b894;
}.dotcom { 	color: white;	font-size: .5em;}

.hamburger {
    display: none;
    font-size: 1.8em;
    background: none;
    border: none;
    color: #dfe6e9;
    cursor: pointer;
    z-index: 1100;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

nav ul li {
    position: relative;
}

nav a {
    color: #dfe6e9;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 5px;
    position: relative;
    transition: color 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background: #00b894;
    transition: all 0.5s ease;
    transform: translateX(-50%);
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #00b894;
}

nav ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #2d3436;
    padding: 10px 0;
    min-width: 180px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1001;
}

nav ul li:hover > ul {
    display: block;
    animation: slideIn 0.3s ease-out;
}

nav ul ul li {
    position: relative;
}

nav ul ul a {
    font-weight: 400;
    padding: 10px 20px;
    color: #dfe6e9;
    display: block;
}

nav ul ul a::after {
    background: #00b894;
}

nav ul ul a:hover {
    color: #00b894;
}

main {
    margin-top: 100px;
    padding: 0 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hero {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #00b894, #0984e3);
    color: #fff;
    border-radius: 15px;		margin-top: 10px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

/* Home Page Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;		margin-top: 10px;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.card h2 {
    color: #00b894;
    margin-bottom: 15px;
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* About Page Content */
.content {
    background: #fff;
    padding: 40px;	
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    animation: fadeInUp 1s ease-out 0.2s backwards;
    overflow: hidden;
}

.content h2 {
    color: #00b894;
    margin-bottom: 20px;
    font-size: 2em;
}

.content p {
    margin-bottom: 20px;
}

.content img {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin: 20px auto;
    display: block;
}

/* Contact Page */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: space-between;
    margin-bottom: 60px;
}

.contact-item {
    flex: 1;
    min-width: 250px;
}

.contact-item h2 {
    color: #00b894;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.contact-item p {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.contact-item a {
    color: #2d3436;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #00b894;
}

.map {
    margin-top: 60px;
}

.map h2 {
    color: #00b894;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: #dfe6e9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d3436;
    font-size: 1.2em;
    text-align: center;
}

/* Gallery (shared across pages) */
.gallery {
    margin-top: 60px;
}

.gallery h2 {
    color: #00b894;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

footer {
    text-align: center;
    padding: 20px;
    background: #2d3436;
    color: #dfe6e9;
    animation: fadeIn 2s ease-out;
    margin-top: 60px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100%;
        background: #2d3436;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
    }

    nav ul.active {
        display: flex;
        right: 0;
    }

    nav ul ul {
        position: static;
        width: 100%;
        background: #3b4b5c;
        padding: 10px 0 0 20px;
        box-shadow: none;
        display: none;
    }

    nav ul li.active > ul {
        display: block;
    }

    nav a {
        padding: 15px;
        font-size: 1.2em;
        color: #dfe6e9;
    }

    nav a::after {
        display: none;
    }

    nav a:hover {
        color: #00b894;
        background: none;
    }

    .hero {
        padding: 40px 20px;
    }

    .hero h1 {
        font-size: 2em;
    }

    main {
        padding: 0 20px;
    }

    .content {
        padding: 20px;
    }

    .card {
        padding: 15px;
    }

    .card img {
        height: 200px;
    }

    .content img {
        height: 200px;
    }

    .contact-info {
        gap: 40px;
    }

    .map-placeholder {
        height: 300px;
    }

    .gallery-item img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2em;
    }

    .content h2,
    .card h2,
    .contact-item h2,
    .map h2,
    .gallery h2 {
        font-size: 1.5em;
    }

    .card img {
        height: 200px;
    }

    .content img {
        height: 200px;
    }

    .contact-item p {
        font-size: 1em;
    }

    .map-placeholder {
        height: 200px;
    }

    .gallery-item img {
        height: 150px;
    }
}