@charset "utf-8";
/* CSS Document */

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: sans-serif;
              background: url("img/50857016_270197057230827_2746334186781470709_n.jpg") no-repeat fixed center center / cover;
			  			background-color: #000;
            color: #fff;
            position: relative;
            overflow-x: hidden;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: 3px 3px;
            pointer-events: none;
            z-index: 0;
        }

        /* Header */
        header {
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            padding: 25px 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            z-index: 10;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        header h1 {
            font-size: 32px;
            font-weight: 400;
            color: #fff;
            letter-spacing: 3px;
            text-transform: uppercase;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
        }

        /* Main Content */
        main {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 80px 20px;
            min-height: calc(100vh - 280px);
            position: relative;
            z-index: 1;
        }

        .welcome-section {
            text-align: center;
            max-width: 900px;
            margin-bottom: 70px;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(15px);
            padding: 50px 40px;
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.15);
            box-shadow: 0 8px 32px rgba(0,0,0,0.4);
        }

        .welcome-section h2 {
            font-size: 42px;
            margin-bottom: 25px;
            color: #fff;
            font-weight: 300;
            letter-spacing: 2px;
            text-shadow: 2px 2px 15px rgba(0,0,0,0.5);
        }

        .welcome-section p {
            font-size: 17px;
            line-height: 1.8;
            color: rgba(255,255,255,0.85);
            font-family: 'Arial', sans-serif;
        }

        /* Portfolio Cards */
        .portfolio-container {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
            justify-content: center;
            max-width: 1200px;
        }

        .portfolio-card {
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(15px);
            border-radius: 15px;
            padding: 50px 35px;
            width: 320px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.5);
            border: 1px solid rgba(255,255,255,0.15);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .portfolio-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.05) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .portfolio-card:hover::before {
            opacity: 1;
        }

        .portfolio-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 50px rgba(0,0,0,0.7);
            border-color: rgba(255,255,255,0.3);
        }

        .icon-container {
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 25px;
            font-size: 40px;
            position: relative;
            z-index: 1;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        }

        .icon-formal {
            background: linear-gradient(135deg, #2196F3 0%, #1976d2 100%);
            color: #fff;
        }

        .icon-artistic {
            background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
            color: #fff;
        }

        .portfolio-card h3 {
            font-size: 26px;
            margin-bottom: 18px;
            color: #fff;
            font-weight: 400;
            letter-spacing: 1px;
            position: relative;
            z-index: 1;
        }

        .portfolio-card p {
            font-size: 15px;
            color: rgba(255,255,255,0.75);
            margin-bottom: 30px;
            line-height: 1.6;
            font-family: 'Arial', sans-serif;
            position: relative;
            z-index: 1;
        }

        .btn {
            padding: 14px 35px;
            border: none;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #fff;
            text-decoration: none;
            display: inline-block;
            position: relative;
            z-index: 1;
            letter-spacing: 1px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .btn:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(0,0,0,0.4);
        }

        .btn-formal {
            background: linear-gradient(135deg, #2196F3 0%, #1976d2 100%);
        }

        .btn-artistic {
            background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
        }

        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(15px);
            color: #fff;
            padding: 50px 20px 25px;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 10;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .footer-content {
            display: flex;
            justify-content: space-around;
            width: 100%;
            max-width: 1200px;
            margin-bottom: 35px;
            flex-wrap: wrap;
            gap: 50px;
        }

        .footer-section {
            flex: 1;
            min-width: 200px;
        }

        .footer-section h4 {
            font-size: 18px;
            margin-bottom: 18px;
            color: #fff;
            font-weight: 400;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .footer-section p,
        .footer-section a {
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #fff;
        }

        .social-icons {
            display: flex;
            gap: 18px;
            margin-top: 12px;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255,255,255,0.2);
            display: flex;
            justify-content: center;
            align-items: center;
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .social-icons a:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255,255,255,0.5);
            color: #fff;
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.1);
            width: 100%;
            font-size: 14px;
            color: rgba(255,255,255,0.5);
        }
.facebook{
	color: #fff;
	background-color: #1877F2 !important;
}
.pinterest{
	  font-family: "Imperial Script";
	  font-weight: bold;
	color: #fff;
	background-color: #E60023 !important;
}
.instagram{
	color: #fff;
	background-color: #EF0189 !important;
}
.linkedin{
	color: #fff;
	background-color: #126AC4 !important;
}

        /* Responsive */
        @media (max-width: 768px) {
            .portfolio-container {
                flex-direction: column;
                align-items: center;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

            .social-icons {
                justify-content: center;
            }
        }